Whamcloud - gitweb
b=19808 2.6.29-fc11 patchless client support
[fs/lustre-release.git] / lustre / include / lprocfs_status.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/include/lprocfs_status.h
37  *
38  * Top level header file for LProc SNMP
39  *
40  * Author: Hariharan Thantry thantry@users.sourceforge.net
41  */
42 #ifndef _LPROCFS_SNMP_H
43 #define _LPROCFS_SNMP_H
44
45 #if defined(__linux__)
46 #include <linux/lprocfs_status.h>
47 #elif defined(__APPLE__)
48 #include <darwin/lprocfs_status.h>
49 #elif defined(__WINNT__)
50 #include <winnt/lprocfs_status.h>
51 #else
52 #error Unsupported operating system.
53 #endif
54 #include <lustre/lustre_idl.h>
55
56 #undef LPROCFS
57 #if (defined(__KERNEL__) && defined(CONFIG_PROC_FS))
58 # define LPROCFS
59 #endif
60
61 struct lprocfs_vars {
62         const char   *name;
63         cfs_read_proc_t *read_fptr;
64         cfs_write_proc_t *write_fptr;
65         void *data;
66         struct file_operations *fops;
67         /**
68          * /proc file mode.
69          */
70         mode_t proc_mode;
71 };
72
73 struct lprocfs_static_vars {
74         struct lprocfs_vars *module_vars;
75         struct lprocfs_vars *obd_vars;
76 };
77
78 /* if we find more consumers this could be generalized */
79 #define OBD_HIST_MAX 32
80 struct obd_histogram {
81         spinlock_t      oh_lock;
82         unsigned long   oh_buckets[OBD_HIST_MAX];
83 };
84
85 enum {
86         BRW_R_PAGES = 0,
87         BRW_W_PAGES,
88         BRW_R_RPC_HIST,
89         BRW_W_RPC_HIST,
90         BRW_R_IO_TIME,
91         BRW_W_IO_TIME,
92         BRW_R_DISCONT_PAGES,
93         BRW_W_DISCONT_PAGES,
94         BRW_R_DISCONT_BLOCKS,
95         BRW_W_DISCONT_BLOCKS,
96         BRW_R_DISK_IOSIZE,
97         BRW_W_DISK_IOSIZE,
98         BRW_R_DIO_FRAGS,
99         BRW_W_DIO_FRAGS,
100         BRW_LAST,
101 };
102
103 struct brw_stats {
104         struct obd_histogram hist[BRW_LAST];
105 };
106
107
108 /* An lprocfs counter can be configured using the enum bit masks below.
109  *
110  * LPROCFS_CNTR_EXTERNALLOCK indicates that an external lock already
111  * protects this counter from concurrent updates. If not specified,
112  * lprocfs an internal per-counter lock variable. External locks are
113  * not used to protect counter increments, but are used to protect
114  * counter readout and resets.
115  *
116  * LPROCFS_CNTR_AVGMINMAX indicates a multi-valued counter samples,
117  * (i.e. counter can be incremented by more than "1"). When specified,
118  * the counter maintains min, max and sum in addition to a simple
119  * invocation count. This allows averages to be be computed.
120  * If not specified, the counter is an increment-by-1 counter.
121  * min, max, sum, etc. are not maintained.
122  *
123  * LPROCFS_CNTR_STDDEV indicates that the counter should track sum of
124  * squares (for multi-valued counter samples only). This allows
125  * external computation of standard deviation, but involves a 64-bit
126  * multiply per counter increment.
127  */
128
129 enum {
130         LPROCFS_CNTR_EXTERNALLOCK = 0x0001,
131         LPROCFS_CNTR_AVGMINMAX    = 0x0002,
132         LPROCFS_CNTR_STDDEV       = 0x0004,
133
134         /* counter data type */
135         LPROCFS_TYPE_REGS         = 0x0100,
136         LPROCFS_TYPE_BYTES        = 0x0200,
137         LPROCFS_TYPE_PAGES        = 0x0400,
138         LPROCFS_TYPE_CYCLE        = 0x0800,
139 };
140
141 struct lprocfs_atomic {
142         atomic_t               la_entry;
143         atomic_t               la_exit;
144 };
145
146 #define LC_MIN_INIT ((~(__u64)0) >> 1)
147
148 struct lprocfs_counter {
149         struct lprocfs_atomic  lc_cntl;  /* may need to move to per set */
150         unsigned int           lc_config;
151         __s64                  lc_count;
152         __s64                  lc_sum;
153         __s64                  lc_sum_irq;
154         __s64                  lc_min;
155         __s64                  lc_max;
156         __s64                  lc_sumsquare;
157         const char            *lc_name;   /* must be static */
158         const char            *lc_units;  /* must be static */
159 };
160
161 struct lprocfs_percpu {
162         struct lprocfs_counter lp_cntr[0];
163 };
164
165 #define LPROCFS_GET_NUM_CPU 0x0001
166 #define LPROCFS_GET_SMP_ID  0x0002
167
168 enum lprocfs_stats_flags {
169         LPROCFS_STATS_FLAG_NONE     = 0x0000, /* per cpu counter */
170         LPROCFS_STATS_FLAG_NOPERCPU = 0x0001, /* stats have no percpu
171                                                * area and need locking */
172         LPROCFS_STATS_GET_SMP_ID    = 0x0002, /* just record locking with
173                                                * LPROCFS_GET_SMP_ID flag */
174 };
175
176 enum lprocfs_fields_flags {
177         LPROCFS_FIELDS_FLAGS_CONFIG     = 0x0001,
178         LPROCFS_FIELDS_FLAGS_SUM        = 0x0002,
179         LPROCFS_FIELDS_FLAGS_MIN        = 0x0003,
180         LPROCFS_FIELDS_FLAGS_MAX        = 0x0004,
181         LPROCFS_FIELDS_FLAGS_AVG        = 0x0005,
182         LPROCFS_FIELDS_FLAGS_SUMSQUARE  = 0x0006,
183         LPROCFS_FIELDS_FLAGS_COUNT      = 0x0007,
184 };
185
186 struct lprocfs_stats {
187         unsigned int           ls_num;     /* # of counters */
188         int                    ls_flags; /* See LPROCFS_STATS_FLAG_* */
189         spinlock_t             ls_lock;  /* Lock used only when there are
190                                           * no percpu stats areas */
191         struct lprocfs_percpu *ls_percpu[0];
192 };
193
194 #define OPC_RANGE(seg) (seg ## _LAST_OPC - seg ## _FIRST_OPC)
195
196 /* Pack all opcodes down into a single monotonically increasing index */
197 static inline int opcode_offset(__u32 opc) {
198         if (opc < OST_LAST_OPC) {
199                  /* OST opcode */
200                 return (opc - OST_FIRST_OPC);
201         } else if (opc < MDS_LAST_OPC) {
202                 /* MDS opcode */
203                 return (opc - MDS_FIRST_OPC +
204                         OPC_RANGE(OST));
205         } else if (opc < LDLM_LAST_OPC) {
206                 /* LDLM Opcode */
207                 return (opc - LDLM_FIRST_OPC +
208                         OPC_RANGE(MDS) +
209                         OPC_RANGE(OST));
210         } else if (opc < MGS_LAST_OPC) {
211                 /* MGS Opcode */
212                 return (opc - MGS_FIRST_OPC +
213                         OPC_RANGE(LDLM) +
214                         OPC_RANGE(MDS) +
215                         OPC_RANGE(OST));
216         } else if (opc < OBD_LAST_OPC) {
217                 /* OBD Ping */
218                 return (opc - OBD_FIRST_OPC +
219                         OPC_RANGE(MGS) +
220                         OPC_RANGE(LDLM) +
221                         OPC_RANGE(MDS) +
222                         OPC_RANGE(OST));
223         } else if (opc < LLOG_LAST_OPC) {
224                 /* LLOG Opcode */
225                 return (opc - LLOG_FIRST_OPC +
226                         OPC_RANGE(OBD) +
227                         OPC_RANGE(MGS) +
228                         OPC_RANGE(LDLM) +
229                         OPC_RANGE(MDS) +
230                         OPC_RANGE(OST));
231         } else if (opc < QUOTA_LAST_OPC) {
232                 /* LQUOTA Opcode */
233                 return (opc - QUOTA_FIRST_OPC +
234                         OPC_RANGE(LLOG) +
235                         OPC_RANGE(OBD) +
236                         OPC_RANGE(MGS) +
237                         OPC_RANGE(LDLM) +
238                         OPC_RANGE(MDS) +
239                         OPC_RANGE(OST));
240         } else if (opc < SEQ_LAST_OPC) {
241                 /* SEQ opcode */
242                 return (opc - SEQ_FIRST_OPC +
243                         OPC_RANGE(QUOTA) +
244                         OPC_RANGE(LLOG) +
245                         OPC_RANGE(OBD) +
246                         OPC_RANGE(MGS) +
247                         OPC_RANGE(LDLM) +
248                         OPC_RANGE(MDS) +
249                         OPC_RANGE(OST));
250         } else if (opc < SEC_LAST_OPC) {
251                 /* SEC opcode */
252                 return (opc - SEC_FIRST_OPC +
253                         OPC_RANGE(SEQ) +
254                         OPC_RANGE(QUOTA) +
255                         OPC_RANGE(LLOG) +
256                         OPC_RANGE(OBD) +
257                         OPC_RANGE(MGS) +
258                         OPC_RANGE(LDLM) +
259                         OPC_RANGE(MDS) +
260                         OPC_RANGE(OST));
261         } else if (opc < FLD_LAST_OPC) {
262                 /* FLD opcode */
263                  return (opc - FLD_FIRST_OPC +
264                         OPC_RANGE(SEC) +
265                         OPC_RANGE(SEQ) +
266                         OPC_RANGE(QUOTA) +
267                         OPC_RANGE(LLOG) +
268                         OPC_RANGE(OBD) +
269                         OPC_RANGE(MGS) +
270                         OPC_RANGE(LDLM) +
271                         OPC_RANGE(MDS) +
272                         OPC_RANGE(OST));
273         } else {
274                 /* Unknown Opcode */
275                 return -1;
276         }
277 }
278
279
280 #define LUSTRE_MAX_OPCODES (OPC_RANGE(OST)  + \
281                             OPC_RANGE(MDS)  + \
282                             OPC_RANGE(LDLM) + \
283                             OPC_RANGE(MGS)  + \
284                             OPC_RANGE(OBD)  + \
285                             OPC_RANGE(LLOG) + \
286                             OPC_RANGE(SEC)  + \
287                             OPC_RANGE(SEQ)  + \
288                             OPC_RANGE(SEC)  + \
289                             OPC_RANGE(FLD)  )
290
291 #define EXTRA_MAX_OPCODES ((PTLRPC_LAST_CNTR - PTLRPC_FIRST_CNTR)  + \
292                             OPC_RANGE(EXTRA))
293
294 enum {
295         PTLRPC_REQWAIT_CNTR = 0,
296         PTLRPC_REQQDEPTH_CNTR,
297         PTLRPC_REQACTIVE_CNTR,
298         PTLRPC_TIMEOUT,
299         PTLRPC_REQBUF_AVAIL_CNTR,
300         PTLRPC_LAST_CNTR
301 };
302
303 #define PTLRPC_FIRST_CNTR PTLRPC_REQWAIT_CNTR
304
305 enum {
306         LDLM_GLIMPSE_ENQUEUE = 0,
307         LDLM_PLAIN_ENQUEUE,
308         LDLM_EXTENT_ENQUEUE,
309         LDLM_FLOCK_ENQUEUE,
310         LDLM_IBITS_ENQUEUE,
311         MDS_REINT_SETATTR,
312         MDS_REINT_CREATE,
313         MDS_REINT_LINK,
314         MDS_REINT_UNLINK,
315         MDS_REINT_RENAME,
316         MDS_REINT_OPEN,
317         MDS_REINT_SETXATTR,
318         BRW_READ_BYTES,
319         BRW_WRITE_BYTES,
320         EXTRA_LAST_OPC
321 };
322
323 #define EXTRA_FIRST_OPC LDLM_GLIMPSE_ENQUEUE
324 /* class_obd.c */
325 extern cfs_proc_dir_entry_t *proc_lustre_root;
326
327 struct obd_device;
328 struct file;
329 struct obd_histogram;
330
331 /* Days / hours / mins / seconds format */
332 struct dhms {
333         int d,h,m,s;
334 };
335 static inline void s2dhms(struct dhms *ts, time_t secs)
336 {
337         ts->d = secs / 86400;
338         secs = secs % 86400;
339         ts->h = secs / 3600;
340         secs = secs % 3600;
341         ts->m = secs / 60;
342         ts->s = secs % 60;
343 }
344 #define DHMS_FMT "%dd%dh%02dm%02ds"
345 #define DHMS_VARS(x) (x)->d, (x)->h, (x)->m, (x)->s
346
347
348 #ifdef LPROCFS
349
350 static inline int lprocfs_stats_lock(struct lprocfs_stats *stats, int type)
351 {
352         int rc = 0;
353
354         if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
355                 if (type & LPROCFS_GET_NUM_CPU)
356                         rc = 1;
357                 if (type & LPROCFS_GET_SMP_ID)
358                         rc = 0;
359                 spin_lock(&stats->ls_lock);
360         } else {
361                 if (type & LPROCFS_GET_NUM_CPU)
362                         rc = num_possible_cpus();
363                 if (type & LPROCFS_GET_SMP_ID) {
364                         stats->ls_flags |= LPROCFS_STATS_GET_SMP_ID;
365                         rc = cfs_get_cpu();
366                 }
367         }
368         return rc;
369 }
370
371 static inline void lprocfs_stats_unlock(struct lprocfs_stats *stats)
372 {
373         if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU)
374                 spin_unlock(&stats->ls_lock);
375         else if (stats->ls_flags & LPROCFS_STATS_GET_SMP_ID)
376                 cfs_put_cpu();
377 }
378
379 /* Two optimized LPROCFS counter increment functions are provided:
380  *     lprocfs_counter_incr(cntr, value) - optimized for by-one counters
381  *     lprocfs_counter_add(cntr) - use for multi-valued counters
382  * Counter data layout allows config flag, counter lock and the
383  * count itself to reside within a single cache line.
384  */
385
386 extern void lprocfs_counter_add(struct lprocfs_stats *stats, int idx,
387                                 long amount);
388 extern void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx,
389                                 long amount);
390
391 #define lprocfs_counter_incr(stats, idx) \
392         lprocfs_counter_add(stats, idx, 1)
393 #define lprocfs_counter_decr(stats, idx) \
394         lprocfs_counter_sub(stats, idx, 1)
395
396 extern __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
397                                  enum lprocfs_fields_flags field);
398 static inline __u64 lprocfs_stats_collector(struct lprocfs_stats *stats,
399                                             int idx,
400                                             enum lprocfs_fields_flags field)
401 {
402         __u64 ret = 0;
403         int i;
404
405         LASSERT(stats != NULL);
406         for (i = 0; i < num_possible_cpus(); i++)
407                 ret += lprocfs_read_helper(&(stats->ls_percpu[i]->lp_cntr[idx]),
408                                            field);
409         return ret;
410 }
411
412 extern struct lprocfs_stats *lprocfs_alloc_stats(unsigned int num,
413                                                  enum lprocfs_stats_flags flags);
414 extern void lprocfs_clear_stats(struct lprocfs_stats *stats);
415 extern void lprocfs_free_stats(struct lprocfs_stats **stats);
416 extern void lprocfs_init_ops_stats(int num_private_stats,
417                                    struct lprocfs_stats *stats);
418 extern void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats);
419 extern int lprocfs_alloc_obd_stats(struct obd_device *obddev,
420                                    unsigned int num_private_stats);
421 extern int lprocfs_alloc_md_stats(struct obd_device *obddev,
422                                   unsigned int num_private_stats);
423 extern void lprocfs_counter_init(struct lprocfs_stats *stats, int index,
424                                  unsigned conf, const char *name,
425                                  const char *units);
426 extern void lprocfs_free_obd_stats(struct obd_device *obddev);
427 extern void lprocfs_free_md_stats(struct obd_device *obddev);
428 struct obd_export;
429 struct nid_stat;
430 extern int lprocfs_add_clear_entry(struct obd_device * obd,
431                                    cfs_proc_dir_entry_t *entry);
432 extern int lprocfs_exp_setup(struct obd_export *exp,
433                              lnet_nid_t *peer_nid, int *newnid);
434 extern int lprocfs_exp_cleanup(struct obd_export *exp);
435 extern cfs_proc_dir_entry_t *lprocfs_add_simple(struct proc_dir_entry *root,
436                                                 char *name,
437                                                 cfs_read_proc_t *read_proc,
438                                                 cfs_write_proc_t *write_proc,
439                                                 void *data,
440                                                 struct file_operations *fops);
441 extern struct proc_dir_entry *lprocfs_add_symlink(const char *name,
442                         struct proc_dir_entry *parent, const char *format, ...);
443 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
444 extern int lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
445                                          unsigned long count, void *data);
446 extern int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
447                                         int count, int *eof,  void *data);
448
449 extern int lprocfs_register_stats(cfs_proc_dir_entry_t *root, const char *name,
450                                   struct lprocfs_stats *stats);
451
452 /* lprocfs_status.c */
453 extern int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
454                             struct lprocfs_vars *var,
455                             void *data);
456
457 extern cfs_proc_dir_entry_t *lprocfs_register(const char *name,
458                                                cfs_proc_dir_entry_t *parent,
459                                                struct lprocfs_vars *list,
460                                                void *data);
461
462 extern void lprocfs_remove(cfs_proc_dir_entry_t **root);
463 extern void lprocfs_remove_proc_entry(const char *name,
464                                       struct proc_dir_entry *parent);
465
466 extern cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *root,
467                                            const char *name);
468
469 extern int lprocfs_obd_setup(struct obd_device *obd, struct lprocfs_vars *list);
470 extern int lprocfs_obd_cleanup(struct obd_device *obd);
471 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
472 extern struct file_operations lprocfs_evict_client_fops;
473
474 extern int lprocfs_seq_create(cfs_proc_dir_entry_t *parent, char *name,
475                               mode_t mode, struct file_operations *seq_fops,
476                               void *data);
477 extern int lprocfs_obd_seq_create(struct obd_device *dev, char *name,
478                                   mode_t mode, struct file_operations *seq_fops,
479                                   void *data);
480
481 /* Generic callbacks */
482
483 extern int lprocfs_rd_u64(char *page, char **start, off_t off,
484                           int count, int *eof, void *data);
485 extern int lprocfs_rd_atomic(char *page, char **start, off_t off,
486                              int count, int *eof, void *data);
487 extern int lprocfs_wr_atomic(struct file *file, const char *buffer,
488                              unsigned long count, void *data);
489 extern int lprocfs_rd_uint(char *page, char **start, off_t off,
490                            int count, int *eof, void *data);
491 extern int lprocfs_wr_uint(struct file *file, const char *buffer,
492                            unsigned long count, void *data);
493 extern int lprocfs_rd_uuid(char *page, char **start, off_t off,
494                            int count, int *eof, void *data);
495 extern int lprocfs_rd_name(char *page, char **start, off_t off,
496                            int count, int *eof, void *data);
497 extern int lprocfs_rd_fstype(char *page, char **start, off_t off,
498                              int count, int *eof, void *data);
499 extern int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
500                                   int count, int *eof, void *data);
501 extern int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
502                                 int count, int *eof, void *data);
503 extern int lprocfs_rd_import(char *page, char **start, off_t off, int count,
504                              int *eof, void *data);
505 extern int lprocfs_rd_state(char *page, char **start, off_t off, int count,
506                             int *eof, void *data);
507 extern int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
508                                     int count, int *eof, void *data);
509 extern int lprocfs_rd_num_exports(char *page, char **start, off_t off,
510                                   int count, int *eof, void *data);
511 extern int lprocfs_rd_numrefs(char *page, char **start, off_t off,
512                               int count, int *eof, void *data);
513 struct adaptive_timeout;
514 extern int lprocfs_at_hist_helper(char *page, int count, int rc,
515                                   struct adaptive_timeout *at);
516 extern int lprocfs_rd_timeouts(char *page, char **start, off_t off,
517                                int count, int *eof, void *data);
518 extern int lprocfs_wr_timeouts(struct file *file, const char *buffer,
519                                unsigned long count, void *data);
520 extern int lprocfs_wr_evict_client(struct file *file, const char *buffer,
521                                    unsigned long count, void *data);
522 extern int lprocfs_wr_ping(struct file *file, const char *buffer,
523                            unsigned long count, void *data);
524
525 extern int lprocfs_rd_quota_resend_count(char *page, char **start, off_t off,
526                                          int count, int *eof, void *data);
527 extern int lprocfs_wr_quota_resend_count(struct file *file, const char *buffer,
528                                          unsigned long count, void *data);
529
530 /* Statfs helpers */
531 extern int lprocfs_rd_blksize(char *page, char **start, off_t off,
532                               int count, int *eof, void *data);
533 extern int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
534                                   int count, int *eof, void *data);
535 extern int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
536                                  int count, int *eof, void *data);
537 extern int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
538                                  int count, int *eof, void *data);
539 extern int lprocfs_rd_filestotal(char *page, char **start, off_t off,
540                                  int count, int *eof, void *data);
541 extern int lprocfs_rd_filesfree(char *page, char **start, off_t off,
542                                 int count, int *eof, void *data);
543 extern int lprocfs_rd_filegroups(char *page, char **start, off_t off,
544                                  int count, int *eof, void *data);
545
546 extern int lprocfs_write_helper(const char *buffer, unsigned long count,
547                                 int *val);
548 extern int lprocfs_write_frac_helper(const char *buffer, unsigned long count,
549                                      int *val, int mult);
550 extern int lprocfs_read_frac_helper(char *buffer, unsigned long count,
551                                     long val, int mult);
552 extern int lprocfs_write_u64_helper(const char *buffer, unsigned long count,
553                                     __u64 *val);
554 extern int lprocfs_write_frac_u64_helper(const char *buffer, unsigned long count,
555                                          __u64 *val, int mult);
556 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value);
557 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value);
558 void lprocfs_oh_clear(struct obd_histogram *oh);
559 unsigned long lprocfs_oh_sum(struct obd_histogram *oh);
560
561 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
562                            struct lprocfs_counter *cnt);
563
564
565 /* lprocfs_status.c: recovery status */
566 int lprocfs_obd_rd_recovery_status(char *page, char **start, off_t off,
567                                    int count, int *eof, void *data);
568
569 /* lprocfs_statuc.c: hash statistics */
570 int lprocfs_obd_rd_hash(char *page, char **start, off_t off,
571                         int count, int *eof, void *data);
572
573 extern int lprocfs_seq_release(struct inode *, struct file *);
574
575 /* in lprocfs_stat.c, to protect the private data for proc entries */
576 extern struct rw_semaphore _lprocfs_lock;
577 #define LPROCFS_ENTRY()           do {  \
578         down_read(&_lprocfs_lock);      \
579 } while(0)
580 #define LPROCFS_EXIT()            do {  \
581         up_read(&_lprocfs_lock);        \
582 } while(0)
583
584 #ifdef HAVE_PROCFS_DELETED
585 static inline
586 int LPROCFS_ENTRY_AND_CHECK(struct proc_dir_entry *dp)
587 {
588         LPROCFS_ENTRY();
589         if ((dp)->deleted) {
590                 LPROCFS_EXIT();
591                 return -ENODEV;
592         }
593         return 0;
594 }
595 #else
596 static inline
597 int LPROCFS_ENTRY_AND_CHECK(struct proc_dir_entry *dp)
598 {
599         LPROCFS_ENTRY();
600         return 0;
601 }
602 #endif
603
604 #define LPROCFS_WRITE_ENTRY()     do {  \
605         down_write(&_lprocfs_lock);     \
606 } while(0)
607 #define LPROCFS_WRITE_EXIT()      do {  \
608         up_write(&_lprocfs_lock);       \
609 } while(0)
610
611
612 /* You must use these macros when you want to refer to
613  * the import in a client obd_device for a lprocfs entry */
614 #define LPROCFS_CLIMP_CHECK(obd) do {           \
615         typecheck(struct obd_device *, obd);    \
616         down_read(&(obd)->u.cli.cl_sem);        \
617         if ((obd)->u.cli.cl_import == NULL) {   \
618              up_read(&(obd)->u.cli.cl_sem);     \
619              return -ENODEV;                    \
620         }                                       \
621 } while(0)
622 #define LPROCFS_CLIMP_EXIT(obd)                 \
623         up_read(&(obd)->u.cli.cl_sem);
624
625
626 /* write the name##_seq_show function, call LPROC_SEQ_FOPS_RO for read-only
627   proc entries; otherwise, you will define name##_seq_write function also for
628   a read-write proc entry, and then call LPROC_SEQ_SEQ instead. Finally,
629   call lprocfs_obd_seq_create(obd, filename, 0444, &name#_fops, data); */
630 #define __LPROC_SEQ_FOPS(name, custom_seq_write)                           \
631 static int name##_seq_open(struct inode *inode, struct file *file) {       \
632         struct proc_dir_entry *dp = PDE(inode);                            \
633         int rc;                                                            \
634         LPROCFS_ENTRY_AND_CHECK(dp);                                       \
635         rc = single_open(file, name##_seq_show, dp->data);                 \
636         if (rc) {                                                          \
637                 LPROCFS_EXIT();                                            \
638                 return rc;                                                 \
639         }                                                                  \
640         return 0;                                                          \
641 }                                                                          \
642 struct file_operations name##_fops = {                                     \
643         .owner   = THIS_MODULE,                                            \
644         .open    = name##_seq_open,                                        \
645         .read    = seq_read,                                               \
646         .write   = custom_seq_write,                                       \
647         .llseek  = seq_lseek,                                              \
648         .release = lprocfs_seq_release,                                    \
649 }
650
651 #define LPROC_SEQ_FOPS_RO(name)         __LPROC_SEQ_FOPS(name, NULL)
652 #define LPROC_SEQ_FOPS(name)            __LPROC_SEQ_FOPS(name, name##_seq_write)
653
654 /* lproc_ptlrpc.c */
655 struct ptlrpc_request;
656 extern void target_print_req(void *seq_file, struct ptlrpc_request *req);
657
658 /* lprocfs_status.c: read recovery max time bz13079 */
659 int lprocfs_obd_rd_recovery_maxtime(char *page, char **start, off_t off,
660                                     int count, int *eof, void *data);
661
662 /* lprocfs_status.c: write recovery max time bz13079 */
663 int lprocfs_obd_wr_recovery_maxtime(struct file *file, const char *buffer,
664                                     unsigned long count, void *data);
665
666 /* all quota proc functions */
667 extern int lprocfs_quota_rd_bunit(char *page, char **start, off_t off, int count,
668                                   int *eof, void *data);
669 extern int lprocfs_quota_wr_bunit(struct file *file, const char *buffer,
670                                   unsigned long count, void *data);
671 extern int lprocfs_quota_rd_btune(char *page, char **start, off_t off, int count,
672                                   int *eof, void *data);
673 extern int lprocfs_quota_wr_btune(struct file *file, const char *buffer,
674                                   unsigned long count, void *data);
675 extern int lprocfs_quota_rd_iunit(char *page, char **start, off_t off, int count,
676                                   int *eof, void *data);
677 extern int lprocfs_quota_wr_iunit(struct file *file, const char *buffer,
678                                   unsigned long count, void *data);
679 extern int lprocfs_quota_rd_itune(char *page, char **start, off_t off, int count,
680                                   int *eof, void *data);
681 extern int lprocfs_quota_wr_itune(struct file *file, const char *buffer,
682                                   unsigned long count, void *data);
683 extern int lprocfs_quota_rd_type(char *page, char **start, off_t off, int count,
684                                  int *eof, void *data);
685 extern int lprocfs_quota_wr_type(struct file *file, const char *buffer,
686                                  unsigned long count, void *data);
687 extern int lprocfs_quota_rd_switch_seconds(char *page, char **start, off_t off,
688                                            int count, int *eof, void *data);
689 extern int lprocfs_quota_wr_switch_seconds(struct file *file, const char *buffer,
690                                            unsigned long count, void *data);
691 extern int lprocfs_quota_rd_sync_blk(char *page, char **start, off_t off,
692                                      int count, int *eof, void *data);
693 extern int lprocfs_quota_wr_sync_blk(struct file *file, const char *buffer,
694                                      unsigned long count, void *data);
695 extern int lprocfs_quota_rd_switch_qs(char *page, char **start, off_t off,
696                                       int count, int *eof, void *data);
697 extern int lprocfs_quota_wr_switch_qs(struct file *file, const char *buffer,
698                                       unsigned long count, void *data);
699 extern int lprocfs_quota_rd_boundary_factor(char *page, char **start, off_t off,
700                                             int count, int *eof, void *data);
701 extern int lprocfs_quota_wr_boundary_factor(struct file *file, const char *buffer,
702                                             unsigned long count, void *data);
703 extern int lprocfs_quota_rd_least_bunit(char *page, char **start, off_t off,
704                                         int count, int *eof, void *data);
705 extern int lprocfs_quota_wr_least_bunit(struct file *file, const char *buffer,
706                                         unsigned long count, void *data);
707 extern int lprocfs_quota_rd_least_iunit(char *page, char **start, off_t off,
708                                         int count, int *eof, void *data);
709 extern int lprocfs_quota_wr_least_iunit(struct file *file, const char *buffer,
710                                         unsigned long count, void *data);
711 extern int lprocfs_quota_rd_qs_factor(char *page, char **start, off_t off,
712                                       int count, int *eof, void *data);
713 extern int lprocfs_quota_wr_qs_factor(struct file *file, const char *buffer,
714                                       unsigned long count, void *data);
715
716
717
718 #else
719 /* LPROCFS is not defined */
720
721
722
723 static inline void lprocfs_counter_add(struct lprocfs_stats *stats,
724                                        int index, long amount) { return; }
725 static inline void lprocfs_counter_incr(struct lprocfs_stats *stats,
726                                         int index) { return; }
727 static inline void lprocfs_counter_sub(struct lprocfs_stats *stats,
728                                        int index, long amount) { return; }
729 static inline void lprocfs_counter_init(struct lprocfs_stats *stats,
730                                         int index, unsigned conf,
731                                         const char *name, const char *units)
732 { return; }
733
734 static inline __u64 lc_read_helper(struct lprocfs_counter *lc,
735                                    enum lprocfs_fields_flags field)
736 { return 0; }
737
738 static inline struct lprocfs_stats* lprocfs_alloc_stats(unsigned int num,
739                                                         enum lprocfs_stats_flags flags)
740 { return NULL; }
741 static inline void lprocfs_clear_stats(struct lprocfs_stats *stats)
742 { return; }
743 static inline void lprocfs_free_stats(struct lprocfs_stats **stats)
744 { return; }
745 static inline int lprocfs_register_stats(cfs_proc_dir_entry_t *root,
746                                             const char *name,
747                                             struct lprocfs_stats *stats)
748 { return 0; }
749 static inline void lprocfs_init_ops_stats(int num_private_stats,
750                                           struct lprocfs_stats *stats)
751 { return; }
752 static inline void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats)
753 { return; }
754 static inline int lprocfs_alloc_obd_stats(struct obd_device *obddev,
755                                           unsigned int num_private_stats)
756 { return 0; }
757 static inline int lprocfs_alloc_md_stats(struct obd_device *obddev,
758                                          unsigned int num_private_stats)
759 { return 0; }
760 static inline void lprocfs_free_obd_stats(struct obd_device *obddev)
761 { return; }
762 static inline void lprocfs_free_md_stats(struct obd_device *obddev)
763 { return; }
764
765 struct obd_export;
766 static inline int lprocfs_add_clear_entry(struct obd_export *exp)
767 { return 0; }
768 static inline int lprocfs_exp_setup(struct obd_export *exp,
769                                     lnet_nid_t *peer_nid, int *newnid)
770 { return 0; }
771 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
772 { return 0; }
773 static inline cfs_proc_dir_entry_t *lprocfs_add_simple(struct proc_dir_entry *root,
774                                      char *name,
775                                      cfs_read_proc_t *read_proc,
776                                      cfs_write_proc_t *write_proc,
777                                      void *data,
778                                      struct file_operations *fops)
779 {return 0; }
780 static inline struct proc_dir_entry *lprocfs_add_symlink(const char *name,
781                         struct proc_dir_entry *parent, const char *format, ...)
782 {return NULL; }
783 static inline void lprocfs_free_per_client_stats(struct obd_device *obd)
784 {}
785 static inline
786 int lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
787                                   unsigned long count, void *data)
788 {return count;}
789 static inline
790 int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
791                                  int count, int *eof,  void *data)
792 {return count;}
793
794 static inline cfs_proc_dir_entry_t *
795 lprocfs_register(const char *name, cfs_proc_dir_entry_t *parent,
796                  struct lprocfs_vars *list, void *data) { return NULL; }
797 static inline int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
798                                    struct lprocfs_vars *var,
799                                    void *data) { return 0; }
800 static inline void lprocfs_remove(cfs_proc_dir_entry_t **root) {};
801 static inline void lprocfs_remove_proc_entry(const char *name,
802                                              struct proc_dir_entry *parent) {};
803 static inline cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *head,
804                                     const char *name) {return 0;}
805 static inline int lprocfs_obd_setup(struct obd_device *dev,
806                                     struct lprocfs_vars *list) { return 0; }
807 static inline int lprocfs_obd_cleanup(struct obd_device *dev)  { return 0; }
808 static inline int lprocfs_rd_u64(char *page, char **start, off_t off,
809                                  int count, int *eof, void *data) { return 0; }
810 static inline int lprocfs_rd_uuid(char *page, char **start, off_t off,
811                                   int count, int *eof, void *data) { return 0; }
812 static inline int lprocfs_rd_name(char *page, char **start, off_t off,
813                                   int count, int *eof, void *data) { return 0; }
814 static inline int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
815                                          int count, int *eof, void *data)
816 { return 0; }
817 static inline int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
818                                        int count, int *eof, void *data)
819 { return 0; }
820 static inline int lprocfs_rd_import(char *page, char **start, off_t off,
821                                     int count, int *eof, void *data)
822 { return 0; }
823 static inline int lprocfs_rd_state(char *page, char **start, off_t off,
824                                    int count, int *eof, void *data)
825 { return 0; }
826 static inline int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
827                                            int count, int *eof, void *data)
828 { return 0; }
829 static inline int lprocfs_rd_num_exports(char *page, char **start, off_t off,
830                                          int count, int *eof, void *data)
831 { return 0; }
832 static inline int lprocfs_rd_numrefs(char *page, char **start, off_t off,
833                                      int count, int *eof, void *data)
834 { return 0; }
835 struct adaptive_timeout;
836 static inline int lprocfs_at_hist_helper(char *page, int count, int rc,
837                                          struct adaptive_timeout *at)
838 { return 0; }
839 static inline int lprocfs_rd_timeouts(char *page, char **start, off_t off,
840                                       int count, int *eof, void *data)
841 { return 0; }
842 static inline int lprocfs_wr_timeouts(struct file *file, const char *buffer,
843                                       unsigned long count, void *data)
844 { return 0; }
845 static inline int lprocfs_wr_evict_client(struct file *file, const char *buffer,
846                                           unsigned long count, void *data)
847 { return 0; }
848 static inline int lprocfs_wr_ping(struct file *file, const char *buffer,
849                                   unsigned long count, void *data)
850 { return 0; }
851
852
853 /* Statfs helpers */
854 static inline
855 int lprocfs_rd_blksize(char *page, char **start, off_t off,
856                        int count, int *eof, void *data) { return 0; }
857 static inline
858 int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
859                            int count, int *eof, void *data) { return 0; }
860 static inline
861 int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
862                           int count, int *eof, void *data) { return 0; }
863 static inline
864 int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
865                            int count, int *eof, void *data) { return 0; }
866 static inline
867 int lprocfs_rd_filestotal(char *page, char **start, off_t off,
868                           int count, int *eof, void *data) { return 0; }
869 static inline
870 int lprocfs_rd_filesfree(char *page, char **start, off_t off,
871                          int count, int *eof, void *data)  { return 0; }
872 static inline
873 int lprocfs_rd_filegroups(char *page, char **start, off_t off,
874                           int count, int *eof, void *data) { return 0; }
875 static inline
876 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value) {}
877 static inline
878 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value) {}
879 static inline
880 void lprocfs_oh_clear(struct obd_histogram *oh) {}
881 static inline
882 unsigned long lprocfs_oh_sum(struct obd_histogram *oh) { return 0; }
883 static inline
884 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
885                            struct lprocfs_counter *cnt) {}
886
887 static inline
888 __u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
889                                enum lprocfs_fields_flags field)
890 { return (__u64)0; }
891
892 #define LPROCFS_ENTRY()
893 #define LPROCFS_EXIT()
894 #define LPROCFS_ENTRY_AND_CHECK(dp)
895 #define LPROC_SEQ_FOPS_RO(name)
896 #define LPROC_SEQ_FOPS(name)
897
898 /* lproc_ptlrpc.c */
899 #define target_print_req NULL
900
901 #endif /* LPROCFS */
902
903 #endif /* LPROCFS_SNMP_H */