Whamcloud - gitweb
land b_ost_amd onto HEAD.
[fs/lustre-release.git] / lustre / obdclass / lprocfs_status.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Hariharan Thantry <thantry@users.sourceforge.net>
6  *
7  *   This file is part of Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #ifndef EXPORT_SYMTAB
24 # define EXPORT_SYMTAB
25 #endif
26 #define DEBUG_SUBSYSTEM S_CLASS
27
28 #ifdef __KERNEL__
29 # include <linux/config.h>
30 # include <linux/module.h>
31 # include <linux/version.h>
32 # include <linux/slab.h>
33 # include <linux/types.h>
34 # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
35 #  include <asm/statfs.h>
36 # endif
37 # include <linux/seq_file.h>
38 #else /* __KERNEL__ */
39 # include <liblustre.h>
40 #endif
41
42 #include <linux/obd_class.h>
43 #include <linux/lprocfs_status.h>
44 #include <linux/lustre_fsfilt.h>
45
46 #if defined(LPROCFS) && defined(__KERNEL__)
47
48 struct proc_dir_entry *lprocfs_srch(struct proc_dir_entry *head,
49                                     const char *name)
50 {
51         struct proc_dir_entry *temp;
52
53         if (head == NULL)
54                 return NULL;
55
56         temp = head->subdir;
57         while (temp != NULL) {
58                 if (strcmp(temp->name, name) == 0)
59                         return temp;
60
61                 temp = temp->next;
62         }
63         return NULL;
64 }
65
66 /* lprocfs API calls */
67
68 int lprocfs_add_vars(struct proc_dir_entry *root, struct lprocfs_vars *list,
69                      void *data)
70 {
71         if (root == NULL || list == NULL)
72                 return -EINVAL;
73
74         while (list->name != NULL) {
75                 struct proc_dir_entry *cur_root, *proc;
76                 char *pathcopy, *cur, *next, pathbuf[64];
77                 int pathsize = strlen(list->name) + 1;
78
79                 proc = NULL;
80                 cur_root = root;
81
82                 /* need copy of path for strsep */
83                 if (strlen(list->name) > sizeof(pathbuf) - 1) {
84                         OBD_ALLOC(pathcopy, pathsize);
85                         if (pathcopy == NULL)
86                                 return -ENOMEM;
87                 } else {
88                         pathcopy = pathbuf;
89                 }
90
91                 next = pathcopy;
92                 strcpy(pathcopy, list->name);
93
94                 while (cur_root != NULL && (cur = strsep(&next, "/"))) {
95                         if (*cur =='\0') /* skip double/trailing "/" */
96                                 continue;
97
98                         proc = lprocfs_srch(cur_root, cur);
99                         CDEBUG(D_OTHER, "cur_root=%s, cur=%s, next=%s, (%s)\n",
100                                cur_root->name, cur, next,
101                                (proc ? "exists" : "new"));
102                         if (next != NULL) {
103                                 cur_root = (proc ? proc :
104                                             proc_mkdir(cur, cur_root));
105                         } else if (proc == NULL) {
106                                 mode_t mode = 0;
107                                 if (list->read_fptr)
108                                         mode = 0444;
109                                 if (list->write_fptr)
110                                         mode |= 0200;
111                                 proc = create_proc_entry(cur, mode, cur_root);
112                         }
113                 }
114
115                 if (pathcopy != pathbuf)
116                         OBD_FREE(pathcopy, pathsize);
117
118                 if (cur_root == NULL || proc == NULL) {
119                         CERROR("LprocFS: No memory to create /proc entry %s",
120                                list->name);
121                         return -ENOMEM;
122                 }
123
124                 proc->read_proc = list->read_fptr;
125                 proc->write_proc = list->write_fptr;
126                 proc->data = (list->data ? list->data : data);
127                 list++;
128         }
129         return 0;
130 }
131
132 void lprocfs_remove(struct proc_dir_entry *root)
133 {
134         struct proc_dir_entry *temp = root;
135         struct proc_dir_entry *rm_entry;
136         struct proc_dir_entry *parent;
137
138         LASSERT(root != NULL);
139         parent = root->parent;
140         LASSERT(parent != NULL);
141  
142         while (1) {
143                 while (temp->subdir != NULL)
144                         temp = temp->subdir;
145
146                 rm_entry = temp;
147                 temp = temp->parent;
148
149                 /* Memory corruption once caused this to fail, and
150                    without this LASSERT we would loop here forever. */
151                 LASSERTF(strlen(rm_entry->name) == rm_entry->namelen,
152                          "0x%p  %s/%s len %d\n", rm_entry, temp->name,
153                          rm_entry->name, (int)strlen(rm_entry->name));
154
155                 remove_proc_entry(rm_entry->name, rm_entry->parent);
156                 if (temp == parent)
157                         break;
158         }
159 }
160
161 struct proc_dir_entry *lprocfs_register(const char *name,
162                                         struct proc_dir_entry *parent,
163                                         struct lprocfs_vars *list, void *data)
164 {
165         struct proc_dir_entry *newchild;
166
167         newchild = lprocfs_srch(parent, name);
168         if (newchild != NULL) {
169                 CERROR(" Lproc: Attempting to register %s more than once \n",
170                        name);
171                 return ERR_PTR(-EALREADY);
172         }
173
174         newchild = proc_mkdir(name, parent);
175         if (newchild != NULL && list != NULL) {
176                 int rc = lprocfs_add_vars(newchild, list, data);
177                 if (rc) {
178                         lprocfs_remove(newchild);
179                         return ERR_PTR(rc);
180                 }
181         }
182         return newchild;
183 }
184
185 /* Generic callbacks */
186
187 int lprocfs_rd_u64(char *page, char **start, off_t off,
188                    int count, int *eof, void *data)
189 {
190         LASSERT(data != NULL);
191         *eof = 1;
192         return snprintf(page, count, LPU64"\n", *(__u64 *)data);
193 }
194
195 int lprocfs_rd_uuid(char *page, char **start, off_t off, int count,
196                     int *eof, void *data)
197 {
198         struct obd_device *dev = (struct obd_device*)data;
199
200         LASSERT(dev != NULL);
201         *eof = 1;
202         return snprintf(page, count, "%s\n", dev->obd_uuid.uuid);
203 }
204
205 int lprocfs_rd_name(char *page, char **start, off_t off, int count,
206                     int *eof, void* data)
207 {
208         struct obd_device *dev = (struct obd_device *)data;
209
210         LASSERT(dev != NULL);
211         LASSERT(dev->obd_name != NULL);
212         *eof = 1;
213         return snprintf(page, count, "%s\n", dev->obd_name);
214 }
215
216 int lprocfs_rd_fstype(char *page, char **start, off_t off, int count, int *eof,
217                       void *data)
218 {
219         struct obd_device *obd = (struct obd_device *)data;
220
221         LASSERT(obd != NULL);
222         LASSERT(obd->obd_fsops != NULL);
223         LASSERT(obd->obd_fsops->fs_type != NULL);
224         return snprintf(page, count, "%s\n", obd->obd_fsops->fs_type);
225 }
226
227 int lprocfs_rd_blksize(char *page, char **start, off_t off, int count,
228                        int *eof, void *data)
229 {
230         struct obd_statfs osfs;
231         int rc = obd_statfs(data, &osfs, jiffies - HZ);
232         if (!rc) {
233                 *eof = 1;
234                 rc = snprintf(page, count, "%u\n", osfs.os_bsize);
235         }
236         return rc;
237 }
238
239 int lprocfs_rd_kbytestotal(char *page, char **start, off_t off, int count,
240                            int *eof, void *data)
241 {
242         struct obd_statfs osfs;
243         int rc = obd_statfs(data, &osfs, jiffies - HZ);
244         if (!rc) {
245                 __u32 blk_size = osfs.os_bsize >> 10;
246                 __u64 result = osfs.os_blocks;
247
248                 while (blk_size >>= 1)
249                         result <<= 1;
250
251                 *eof = 1;
252                 rc = snprintf(page, count, LPU64"\n", result);
253         }
254         return rc;
255 }
256
257 int lprocfs_rd_kbytesfree(char *page, char **start, off_t off, int count,
258                           int *eof, void *data)
259 {
260         struct obd_statfs osfs;
261         int rc = obd_statfs(data, &osfs, jiffies - HZ);
262         if (!rc) {
263                 __u32 blk_size = osfs.os_bsize >> 10;
264                 __u64 result = osfs.os_bfree;
265
266                 while (blk_size >>= 1)
267                         result <<= 1;
268
269                 *eof = 1;
270                 rc = snprintf(page, count, LPU64"\n", result);
271         }
272         return rc;
273 }
274
275 int lprocfs_rd_kbytesavail(char *page, char **start, off_t off, int count,
276                            int *eof, void *data)
277 {
278         struct obd_statfs osfs;
279         int rc = obd_statfs(data, &osfs, jiffies - HZ);
280         if (!rc) {
281                 __u32 blk_size = osfs.os_bsize >> 10;
282                 __u64 result = osfs.os_bavail;
283
284                 while (blk_size >>= 1)
285                         result <<= 1;
286
287                 *eof = 1;
288                 rc = snprintf(page, count, LPU64"\n", result);
289         }
290         return rc;
291 }
292
293 int lprocfs_rd_filestotal(char *page, char **start, off_t off, int count,
294                           int *eof, void *data)
295 {
296         struct obd_statfs osfs;
297         int rc = obd_statfs(data, &osfs, jiffies - HZ);
298         if (!rc) {
299                 *eof = 1;
300                 rc = snprintf(page, count, LPU64"\n", osfs.os_files);
301         }
302
303         return rc;
304 }
305
306 int lprocfs_rd_filesfree(char *page, char **start, off_t off, int count,
307                          int *eof, void *data)
308 {
309         struct obd_statfs osfs;
310         int rc = obd_statfs(data, &osfs, jiffies - HZ);
311         if (!rc) {
312                 *eof = 1;
313                 rc = snprintf(page, count, LPU64"\n", osfs.os_ffree);
314         }
315         return rc;
316 }
317
318 int lprocfs_rd_server_uuid(char *page, char **start, off_t off, int count,
319                            int *eof, void *data)
320 {
321         struct obd_device *obd = (struct obd_device *)data;
322         struct obd_import *imp;
323         char *imp_state_name = NULL;
324
325         LASSERT(obd != NULL);
326         imp = obd->u.cli.cl_import;
327         imp_state_name = ptlrpc_import_state_name(imp->imp_state);
328         *eof = 1;
329         return snprintf(page, count, "%s\t%s\n",
330                         imp->imp_target_uuid.uuid, imp_state_name);
331 }
332
333 int lprocfs_rd_conn_uuid(char *page, char **start, off_t off, int count,
334                          int *eof,  void *data)
335 {
336         struct obd_device *obd = (struct obd_device*)data;
337         struct ptlrpc_connection *conn;
338
339         LASSERT(obd != NULL);
340         conn = obd->u.cli.cl_import->imp_connection;
341         LASSERT(conn != NULL);
342         *eof = 1;
343         return snprintf(page, count, "%s\n", conn->c_remote_uuid.uuid);
344 }
345
346 int lprocfs_rd_num_exports(char *page, char **start, off_t off, int count,
347                            int *eof,  void *data)
348 {
349         struct obd_device *obd = (struct obd_device*)data;
350
351         LASSERT(obd != NULL);
352         *eof = 1;
353         return snprintf(page, count, "%u\n", obd->obd_num_exports);
354 }
355
356 int lprocfs_rd_numrefs(char *page, char **start, off_t off, int count,
357                        int *eof, void *data)
358 {
359         struct obd_type *class = (struct obd_type*) data;
360
361         LASSERT(class != NULL);
362         *eof = 1;
363         return snprintf(page, count, "%d\n", class->typ_refcnt);
364 }
365
366 int lprocfs_obd_attach(struct obd_device *dev, struct lprocfs_vars *list)
367 {
368         int rc = 0;
369
370         LASSERT(dev != NULL);
371         LASSERT(dev->obd_type != NULL);
372         LASSERT(dev->obd_type->typ_procroot != NULL);
373
374         dev->obd_proc_entry = lprocfs_register(dev->obd_name,
375                                                dev->obd_type->typ_procroot,
376                                                list, dev);
377         if (IS_ERR(dev->obd_proc_entry)) {
378                 rc = PTR_ERR(dev->obd_proc_entry);
379                 dev->obd_proc_entry = NULL;
380         }
381         return rc;
382 }
383
384 int lprocfs_obd_detach(struct obd_device *dev)
385 {
386         if (dev && dev->obd_proc_entry) {
387                 lprocfs_remove(dev->obd_proc_entry);
388                 dev->obd_proc_entry = NULL;
389         }
390         return 0;
391 }
392
393 struct lprocfs_stats *lprocfs_alloc_stats(unsigned int num)
394 {
395         struct lprocfs_stats *stats;
396         struct lprocfs_percpu *percpu;
397         unsigned int percpusize;
398         unsigned int i;
399
400         if (num == 0)
401                 return NULL;
402
403         OBD_ALLOC(stats, offsetof(typeof(*stats), ls_percpu[num_online_cpus()]));
404         if (stats == NULL)
405                 return NULL;
406
407         percpusize = L1_CACHE_ALIGN(offsetof(typeof(*percpu), lp_cntr[num]));
408         stats->ls_percpu_size = num_online_cpus() * percpusize;
409         OBD_ALLOC(stats->ls_percpu[0], stats->ls_percpu_size);
410         if (stats->ls_percpu[0] == NULL) {
411                 OBD_FREE(stats, offsetof(typeof(*stats),
412                                          ls_percpu[num_online_cpus()]));
413                 return NULL;
414         }
415
416         stats->ls_num = num;
417         for (i = 1; i < num_online_cpus(); i++)
418                 stats->ls_percpu[i] = (void *)(stats->ls_percpu[i - 1]) +
419                         percpusize;
420
421         return stats;
422 }
423
424 void lprocfs_free_stats(struct lprocfs_stats *stats)
425 {
426         if (stats->ls_num == 0)
427                 return;
428
429         OBD_FREE(stats->ls_percpu[0], stats->ls_percpu_size);
430         OBD_FREE(stats, offsetof(typeof(*stats), ls_percpu[num_online_cpus()]));
431 }
432
433 /* Reset counter under lock */
434 int lprocfs_counter_write(struct file *file, const char *buffer,
435                           unsigned long count, void *data)
436 {
437         /* not supported */
438         return 0;
439 }
440
441 static void *lprocfs_stats_seq_start(struct seq_file *p, loff_t *pos)
442 {
443         struct lprocfs_stats *stats = p->private;
444         /* return 1st cpu location */
445         return (*pos >= stats->ls_num) ? NULL :
446                 &(stats->ls_percpu[0]->lp_cntr[*pos]);
447 }
448
449 static void lprocfs_stats_seq_stop(struct seq_file *p, void *v)
450 {
451 }
452
453 static void *lprocfs_stats_seq_next(struct seq_file *p, void *v, loff_t *pos)
454 {
455         struct lprocfs_stats *stats = p->private;
456         ++*pos;
457         return (*pos >= stats->ls_num) ? NULL :
458                 &(stats->ls_percpu[0]->lp_cntr[*pos]);
459 }
460
461 /* seq file export of one lprocfs counter */
462 static int lprocfs_stats_seq_show(struct seq_file *p, void *v)
463 {
464        struct lprocfs_stats *stats = p->private;
465        struct lprocfs_counter  *cntr = v;
466        struct lprocfs_counter  t, ret = { .lc_min = ~(__u64)0 };
467        int i, idx, rc;
468
469        if (cntr == &(stats->ls_percpu[0])->lp_cntr[0]) {
470                struct timeval now;
471                do_gettimeofday(&now);
472                rc = seq_printf(p, "%-25s %lu.%lu secs.usecs\n",
473                                "snapshot_time", now.tv_sec, now.tv_usec);
474                if (rc < 0)
475                        return rc;
476        }
477        idx = cntr - &(stats->ls_percpu[0])->lp_cntr[0];
478
479        for (i = 0; i < num_online_cpus(); i++) {
480                struct lprocfs_counter *percpu_cntr =
481                        &(stats->ls_percpu[i])->lp_cntr[idx];
482                int centry;
483
484                do {
485                        centry = atomic_read(&percpu_cntr->lc_cntl.la_entry);
486                        t.lc_count = percpu_cntr->lc_count;
487                        t.lc_sum = percpu_cntr->lc_sum;
488                        t.lc_min = percpu_cntr->lc_min;
489                        t.lc_max = percpu_cntr->lc_max;
490                        t.lc_sumsquare = percpu_cntr->lc_sumsquare;
491                } while (centry != atomic_read(&percpu_cntr->lc_cntl.la_entry) &&
492                         centry != atomic_read(&percpu_cntr->lc_cntl.la_exit));
493                ret.lc_count += t.lc_count;
494                ret.lc_sum += t.lc_sum;
495                if (t.lc_min < ret.lc_min)
496                        ret.lc_min = t.lc_min;
497                if (t.lc_max > ret.lc_max)
498                        ret.lc_max = t.lc_max;
499                ret.lc_sumsquare += t.lc_sumsquare;
500        }
501
502        rc = seq_printf(p, "%-25s "LPU64" samples [%s]", cntr->lc_name,
503                        ret.lc_count, cntr->lc_units);
504        if (rc < 0)
505                goto out;
506
507        if ((cntr->lc_config & LPROCFS_CNTR_AVGMINMAX) && (ret.lc_count > 0)) {
508                rc = seq_printf(p, " "LPU64" "LPU64" "LPU64,
509                                ret.lc_min, ret.lc_max, ret.lc_sum);
510                if (rc < 0)
511                        goto out;
512                if (cntr->lc_config & LPROCFS_CNTR_STDDEV)
513                        rc = seq_printf(p, " "LPU64, ret.lc_sumsquare);
514                if (rc < 0)
515                        goto out;
516        }
517        rc = seq_printf(p, "\n");
518  out:
519        return (rc < 0) ? rc : 0;
520 }
521
522 struct seq_operations lprocfs_stats_seq_sops = {
523         start: lprocfs_stats_seq_start,
524         stop:  lprocfs_stats_seq_stop,
525         next:  lprocfs_stats_seq_next,
526         show:  lprocfs_stats_seq_show,
527 };
528
529 static int lprocfs_stats_seq_open(struct inode *inode, struct file *file)
530 {
531         struct proc_dir_entry *dp = PDE(inode);
532         struct seq_file *seq;
533         int rc;
534
535         rc = seq_open(file, &lprocfs_stats_seq_sops);
536         if (rc)
537                 return rc;
538         seq = file->private_data;
539         seq->private = dp->data;
540         return 0;
541 }
542
543 struct file_operations lprocfs_stats_seq_fops = {
544         .owner   = THIS_MODULE,
545         .open    = lprocfs_stats_seq_open,
546         .read    = seq_read,
547         .llseek  = seq_lseek,
548         .release = seq_release,
549 };
550
551 int lprocfs_register_stats(struct proc_dir_entry *root, const char *name,
552                            struct lprocfs_stats *stats)
553 {
554         struct proc_dir_entry *entry;
555         LASSERT(root != NULL);
556
557         entry = create_proc_entry(name, 0444, root);
558         if (entry == NULL)
559                 return -ENOMEM;
560         entry->proc_fops = &lprocfs_stats_seq_fops;
561         entry->data = (void *)stats;
562         entry->write_proc = lprocfs_counter_write;
563         return 0;
564 }
565
566 void lprocfs_counter_init(struct lprocfs_stats *stats, int index,
567                           unsigned conf, const char *name, const char *units)
568 {
569         struct lprocfs_counter *c;
570         int i;
571
572         LASSERT(stats != NULL);
573         for (i = 0; i < num_online_cpus(); i++) {
574                 c = &(stats->ls_percpu[i]->lp_cntr[index]);
575                 c->lc_config = conf;
576                 c->lc_min = ~(__u64)0;
577                 c->lc_name = name;
578                 c->lc_units = units;
579         }
580 }
581 EXPORT_SYMBOL(lprocfs_counter_init);
582
583 #define LPROCFS_OBD_OP_INIT(base, stats, op)                               \
584 do {                                                                       \
585         unsigned int coffset = base + OBD_COUNTER_OFFSET(op);              \
586         LASSERT(coffset < stats->ls_num);                                  \
587         lprocfs_counter_init(stats, coffset, 0, #op, "reqs");              \
588 } while (0)
589
590 int lprocfs_alloc_obd_stats(struct obd_device *obd, unsigned num_private_stats)
591 {
592         struct lprocfs_stats *stats;
593         unsigned int num_stats;
594         int rc, i;
595
596         LASSERT(obd->obd_stats == NULL);
597         LASSERT(obd->obd_proc_entry != NULL);
598         LASSERT(obd->obd_cntr_base == 0);
599
600         num_stats = 1 + OBD_COUNTER_OFFSET(init_ea_size) +
601                 num_private_stats;
602         stats = lprocfs_alloc_stats(num_stats);
603         if (stats == NULL)
604                 return -ENOMEM;
605
606         LPROCFS_OBD_OP_INIT(num_private_stats, stats, iocontrol);
607         LPROCFS_OBD_OP_INIT(num_private_stats, stats, get_info);
608         LPROCFS_OBD_OP_INIT(num_private_stats, stats, set_info);
609         LPROCFS_OBD_OP_INIT(num_private_stats, stats, attach);
610         LPROCFS_OBD_OP_INIT(num_private_stats, stats, detach);
611         LPROCFS_OBD_OP_INIT(num_private_stats, stats, setup);
612         LPROCFS_OBD_OP_INIT(num_private_stats, stats, precleanup);
613         LPROCFS_OBD_OP_INIT(num_private_stats, stats, cleanup);
614         LPROCFS_OBD_OP_INIT(num_private_stats, stats, process_config);
615         LPROCFS_OBD_OP_INIT(num_private_stats, stats, postrecov);
616         LPROCFS_OBD_OP_INIT(num_private_stats, stats, connect);
617         LPROCFS_OBD_OP_INIT(num_private_stats, stats, disconnect);
618         LPROCFS_OBD_OP_INIT(num_private_stats, stats, statfs);
619         LPROCFS_OBD_OP_INIT(num_private_stats, stats, packmd);
620         LPROCFS_OBD_OP_INIT(num_private_stats, stats, unpackmd);
621         LPROCFS_OBD_OP_INIT(num_private_stats, stats, revalidate_md);
622         LPROCFS_OBD_OP_INIT(num_private_stats, stats, preallocate);
623         LPROCFS_OBD_OP_INIT(num_private_stats, stats, create);
624         LPROCFS_OBD_OP_INIT(num_private_stats, stats, destroy);
625         LPROCFS_OBD_OP_INIT(num_private_stats, stats, setattr);
626         LPROCFS_OBD_OP_INIT(num_private_stats, stats, getattr);
627         LPROCFS_OBD_OP_INIT(num_private_stats, stats, getattr_async);
628         LPROCFS_OBD_OP_INIT(num_private_stats, stats, brw);
629         LPROCFS_OBD_OP_INIT(num_private_stats, stats, brw_async);
630         LPROCFS_OBD_OP_INIT(num_private_stats, stats, prep_async_page);
631         LPROCFS_OBD_OP_INIT(num_private_stats, stats, queue_async_io);
632         LPROCFS_OBD_OP_INIT(num_private_stats, stats, set_async_flags);
633         LPROCFS_OBD_OP_INIT(num_private_stats, stats, queue_group_io);
634         LPROCFS_OBD_OP_INIT(num_private_stats, stats, trigger_group_io);
635         LPROCFS_OBD_OP_INIT(num_private_stats, stats, teardown_async_page);
636         LPROCFS_OBD_OP_INIT(num_private_stats, stats, punch);
637         LPROCFS_OBD_OP_INIT(num_private_stats, stats, sync);
638         LPROCFS_OBD_OP_INIT(num_private_stats, stats, migrate);
639         LPROCFS_OBD_OP_INIT(num_private_stats, stats, copy);
640         LPROCFS_OBD_OP_INIT(num_private_stats, stats, iterate);
641         LPROCFS_OBD_OP_INIT(num_private_stats, stats, preprw);
642         LPROCFS_OBD_OP_INIT(num_private_stats, stats, commitrw);
643         LPROCFS_OBD_OP_INIT(num_private_stats, stats, write_extents);
644         LPROCFS_OBD_OP_INIT(num_private_stats, stats, enqueue);
645         LPROCFS_OBD_OP_INIT(num_private_stats, stats, match);
646         LPROCFS_OBD_OP_INIT(num_private_stats, stats, change_cbdata);
647         LPROCFS_OBD_OP_INIT(num_private_stats, stats, cancel);
648         LPROCFS_OBD_OP_INIT(num_private_stats, stats, cancel_unused);
649         LPROCFS_OBD_OP_INIT(num_private_stats, stats, san_preprw);
650         LPROCFS_OBD_OP_INIT(num_private_stats, stats, init_export);
651         LPROCFS_OBD_OP_INIT(num_private_stats, stats, destroy_export);
652         LPROCFS_OBD_OP_INIT(num_private_stats, stats, llog_init); 
653         LPROCFS_OBD_OP_INIT(num_private_stats, stats, llog_finish); 
654         LPROCFS_OBD_OP_INIT(num_private_stats, stats, llog_connect); 
655         LPROCFS_OBD_OP_INIT(num_private_stats, stats, pin); 
656         LPROCFS_OBD_OP_INIT(num_private_stats, stats, unpin);
657         LPROCFS_OBD_OP_INIT(num_private_stats, stats, import_event);
658         LPROCFS_OBD_OP_INIT(num_private_stats, stats, notify);
659         LPROCFS_OBD_OP_INIT(num_private_stats, stats, init_ea_size);
660
661         for (i = num_private_stats; i < num_stats; i++) {
662                 /* If this LBUGs, it is likely that an obd
663                  * operation was added to struct obd_ops in
664                  * <linux/obd.h>, and that the corresponding line item
665                  * LPROCFS_OBD_OP_INIT(.., .., opname)
666                  * is missing from the list above. */
667                 if (stats->ls_percpu[0]->lp_cntr[i].lc_name == NULL) {
668                         CERROR("Missing obd_stat initializer obd_op "
669                                "operation at offset %d. Aborting.\n",
670                                i - num_private_stats);
671                         LBUG();
672                 }
673         }
674         rc = lprocfs_register_stats(obd->obd_proc_entry, "stats", stats);
675         if (rc < 0) {
676                 lprocfs_free_stats(stats);
677         } else {
678                 obd->obd_stats  = stats;
679                 obd->obd_cntr_base = num_private_stats;
680         }
681         return rc;
682 }
683
684 void lprocfs_free_obd_stats(struct obd_device *obd)
685 {
686         struct lprocfs_stats *stats = obd->obd_stats;
687
688         if (stats != NULL) {
689                 obd->obd_stats = NULL;
690                 lprocfs_free_stats(stats);
691         }
692 }
693
694 int lprocfs_write_helper(const char *buffer, unsigned long count,
695                          int *val)
696 {
697         char kernbuf[20], *end;
698
699         if (count > (sizeof(kernbuf) - 1))
700                 return -EINVAL;
701
702         if (copy_from_user(kernbuf, buffer, count))
703                 return -EFAULT;
704
705         kernbuf[count] = '\0';
706
707         *val = simple_strtol(kernbuf, &end, 0);
708         if (kernbuf == end)
709                 return -EINVAL;
710
711         return 0;
712 }
713
714 int lprocfs_write_u64_helper(const char *buffer, unsigned long count,
715                              __u64 *val)
716 {
717         char kernbuf[22], *end;
718
719         if (count > (sizeof(kernbuf) - 1))
720                 return -EINVAL;
721
722         if (copy_from_user(kernbuf, buffer, count))
723                 return -EFAULT;
724
725         kernbuf[count] = '\0';
726
727         *val = simple_strtoull(kernbuf, &end, 0);
728         if (kernbuf == end)
729                 return -EINVAL;
730
731         return 0;
732 }
733
734 int lprocfs_obd_seq_create(struct obd_device *dev, char *name, mode_t mode,
735                            struct file_operations *seq_fops, void *data)
736 {
737         struct proc_dir_entry *entry;
738         ENTRY;
739
740         entry = create_proc_entry(name, mode, dev->obd_proc_entry);
741         if (entry == NULL)
742                 RETURN(-ENOMEM);
743         entry->proc_fops = seq_fops;
744         entry->data = data;
745
746         RETURN(0);
747 }
748 EXPORT_SYMBOL(lprocfs_obd_seq_create);
749
750 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value)
751 {
752         unsigned long flags;
753
754         if (value >= OBD_HIST_MAX)
755                 value = OBD_HIST_MAX - 1;
756
757         spin_lock_irqsave(&oh->oh_lock, flags);
758         oh->oh_buckets[value]++;
759         spin_unlock_irqrestore(&oh->oh_lock, flags);
760 }
761 EXPORT_SYMBOL(lprocfs_oh_tally);
762
763 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value)
764 {
765         unsigned int val;
766
767         for (val = 0; ((1 << val) < value) && (val <= OBD_HIST_MAX); val++)
768                 ;
769
770         lprocfs_oh_tally(oh, val);
771 }
772 EXPORT_SYMBOL(lprocfs_oh_tally_log2);
773
774 unsigned long lprocfs_oh_sum(struct obd_histogram *oh)
775 {
776         unsigned long ret = 0;
777         int i;
778
779         for (i = 0; i < OBD_HIST_MAX; i++)
780                 ret +=  oh->oh_buckets[i];
781         return ret;
782 }
783 EXPORT_SYMBOL(lprocfs_oh_sum);
784
785 void lprocfs_oh_clear(struct obd_histogram *oh)
786 {
787         unsigned long flags;
788         spin_lock_irqsave(&oh->oh_lock, flags);
789         memset(oh->oh_buckets, 0, sizeof(oh->oh_buckets));
790         spin_unlock_irqrestore(&oh->oh_lock, flags);
791 }
792 EXPORT_SYMBOL(lprocfs_oh_clear);
793
794 #endif /* LPROCFS*/
795
796 EXPORT_SYMBOL(lprocfs_register);
797 EXPORT_SYMBOL(lprocfs_srch);
798 EXPORT_SYMBOL(lprocfs_remove);
799 EXPORT_SYMBOL(lprocfs_add_vars);
800 EXPORT_SYMBOL(lprocfs_obd_attach);
801 EXPORT_SYMBOL(lprocfs_obd_detach);
802 EXPORT_SYMBOL(lprocfs_alloc_stats);
803 EXPORT_SYMBOL(lprocfs_free_stats);
804 EXPORT_SYMBOL(lprocfs_register_stats);
805 EXPORT_SYMBOL(lprocfs_alloc_obd_stats);
806 EXPORT_SYMBOL(lprocfs_free_obd_stats);
807
808 EXPORT_SYMBOL(lprocfs_rd_u64);
809 EXPORT_SYMBOL(lprocfs_rd_uuid);
810 EXPORT_SYMBOL(lprocfs_rd_name);
811 EXPORT_SYMBOL(lprocfs_rd_fstype);
812 EXPORT_SYMBOL(lprocfs_rd_server_uuid);
813 EXPORT_SYMBOL(lprocfs_rd_conn_uuid);
814 EXPORT_SYMBOL(lprocfs_rd_num_exports);
815 EXPORT_SYMBOL(lprocfs_rd_numrefs);
816
817 EXPORT_SYMBOL(lprocfs_rd_blksize);
818 EXPORT_SYMBOL(lprocfs_rd_kbytestotal);
819 EXPORT_SYMBOL(lprocfs_rd_kbytesfree);
820 EXPORT_SYMBOL(lprocfs_rd_kbytesavail);
821 EXPORT_SYMBOL(lprocfs_rd_filestotal);
822 EXPORT_SYMBOL(lprocfs_rd_filesfree);
823
824 EXPORT_SYMBOL(lprocfs_write_helper);
825 EXPORT_SYMBOL(lprocfs_write_u64_helper);