Whamcloud - gitweb
9696a7bb07146e39588e22dec47335fc18e16cb8
[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 #include <lustre/lustre_idl.h>
46 #if defined(__linux__)
47 #include <linux/lprocfs_status.h>
48 #elif defined(__APPLE__)
49 #include <darwin/lprocfs_status.h>
50 #elif defined(__WINNT__)
51 #include <winnt/lprocfs_status.h>
52 #else
53 #error Unsupported operating system.
54 #endif
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_min;
154         __s64                  lc_max;
155         __s64                  lc_sumsquare;
156         const char            *lc_name;   /* must be static */
157         const char            *lc_units;  /* must be static */
158 };
159
160 struct lprocfs_percpu {
161         struct lprocfs_counter lp_cntr[0];
162 };
163
164 #define LPROCFS_GET_NUM_CPU 0x0001
165 #define LPROCFS_GET_SMP_ID  0x0002
166
167 enum lprocfs_stats_flags {
168         LPROCFS_STATS_FLAG_PERCPU   = 0x0000, /* per cpu counter */
169         LPROCFS_STATS_FLAG_NOPERCPU = 0x0001, /* stats have no percpu
170                                                * area and need locking */
171 };
172
173 enum lprocfs_fields_flags {
174         LPROCFS_FIELDS_FLAGS_CONFIG     = 0x0001,
175         LPROCFS_FIELDS_FLAGS_SUM        = 0x0002,
176         LPROCFS_FIELDS_FLAGS_MIN        = 0x0003,
177         LPROCFS_FIELDS_FLAGS_MAX        = 0x0004,
178         LPROCFS_FIELDS_FLAGS_AVG        = 0x0005,
179         LPROCFS_FIELDS_FLAGS_SUMSQUARE  = 0x0006,
180         LPROCFS_FIELDS_FLAGS_COUNT      = 0x0007,
181 };
182
183 struct lprocfs_stats {
184         unsigned int           ls_num;     /* # of counters */
185         int                    ls_flags; /* See LPROCFS_STATS_FLAG_* */
186         spinlock_t             ls_lock;  /* Lock used only when there are
187                                           * no percpu stats areas */
188         struct lprocfs_percpu *ls_percpu[0];
189 };
190
191 static inline int opcode_offset(__u32 opc) {
192         if (opc < OST_LAST_OPC) {
193                  /* OST opcode */
194                 return (opc - OST_FIRST_OPC);
195         } else if (opc < MDS_LAST_OPC) {
196                 /* MDS opcode */
197                 return (opc - MDS_FIRST_OPC +
198                         (OST_LAST_OPC - OST_FIRST_OPC));
199         } else if (opc < LDLM_LAST_OPC) {
200                 /* LDLM Opcode */
201                 return (opc - LDLM_FIRST_OPC +
202                         (MDS_LAST_OPC - MDS_FIRST_OPC) +
203                         (OST_LAST_OPC - OST_FIRST_OPC));
204         } else if (opc < MGS_LAST_OPC) {
205                 /* MGS Opcode */
206                 return (opc - MGS_FIRST_OPC +
207                         (LDLM_LAST_OPC - LDLM_FIRST_OPC) +
208                         (MDS_LAST_OPC - MDS_FIRST_OPC) +
209                         (OST_LAST_OPC - OST_FIRST_OPC));
210         } else if (opc < OBD_LAST_OPC) {
211                 /* OBD Ping */
212                 return (opc - OBD_FIRST_OPC +
213                         (MGS_LAST_OPC - MGS_FIRST_OPC) +
214                         (LDLM_LAST_OPC - LDLM_FIRST_OPC) +
215                         (MDS_LAST_OPC - MDS_FIRST_OPC) +
216                         (OST_LAST_OPC - OST_FIRST_OPC));
217         } else if (opc < LLOG_LAST_OPC) {
218                 /* LLOG Opcode */
219                 return (opc - LLOG_FIRST_OPC +
220                         (OBD_LAST_OPC - OBD_FIRST_OPC) +
221                         (MGS_LAST_OPC - MGS_FIRST_OPC) +
222                         (LDLM_LAST_OPC - LDLM_FIRST_OPC) +
223                         (MDS_LAST_OPC - MDS_FIRST_OPC) +
224                         (OST_LAST_OPC - OST_FIRST_OPC));
225 } else if (opc < FLD_LAST_OPC) {
226                 /* FLD opcode */
227                 return (opc - FLD_FIRST_OPC +
228                         (LLOG_LAST_OPC - LLOG_FIRST_OPC) +
229                         (OBD_LAST_OPC - OBD_FIRST_OPC) +
230                         (MGS_LAST_OPC - MGS_FIRST_OPC) +
231                         (LDLM_LAST_OPC - LDLM_FIRST_OPC) +
232                         (MDS_LAST_OPC - MDS_FIRST_OPC) +
233                         (OST_LAST_OPC - OST_FIRST_OPC));
234         } else if (opc < SEQ_LAST_OPC) {
235                 /* SEQ opcode */
236                 return (opc - SEQ_FIRST_OPC +
237                         (FLD_LAST_OPC - FLD_FIRST_OPC) +
238                         (LLOG_LAST_OPC - LLOG_FIRST_OPC) +
239                         (OBD_LAST_OPC - OBD_FIRST_OPC) +
240                         (MGS_LAST_OPC - MGS_FIRST_OPC) +
241                         (LDLM_LAST_OPC - LDLM_FIRST_OPC) +
242                         (MDS_LAST_OPC - MDS_FIRST_OPC) +
243                         (OST_LAST_OPC - OST_FIRST_OPC));
244         } else if (opc < SEC_LAST_OPC) {
245                 /* SEC opcode */
246                 return (opc - SEC_FIRST_OPC +
247                         (SEQ_LAST_OPC - SEQ_FIRST_OPC) +
248                         (FLD_LAST_OPC - FLD_FIRST_OPC) +
249                         (LLOG_LAST_OPC - LLOG_FIRST_OPC) +
250                         (OBD_LAST_OPC - OBD_FIRST_OPC) +
251                         (MGS_LAST_OPC - MGS_FIRST_OPC) +
252                         (LDLM_LAST_OPC - LDLM_FIRST_OPC) +
253                         (MDS_LAST_OPC - MDS_FIRST_OPC) +
254                         (OST_LAST_OPC - OST_FIRST_OPC));
255         } else {
256                 /* Unknown Opcode */
257                 return -1;
258         }
259 }
260
261 #define LUSTRE_MAX_OPCODES ((LDLM_LAST_OPC - LDLM_FIRST_OPC)   + \
262                             (MDS_LAST_OPC - MDS_FIRST_OPC)     + \
263                             (OST_LAST_OPC - OST_FIRST_OPC)     + \
264                             (OBD_LAST_OPC - OBD_FIRST_OPC)     + \
265                             (FLD_LAST_OPC - FLD_FIRST_OPC)     + \
266                             (SEQ_LAST_OPC - SEQ_FIRST_OPC)     + \
267                             (MGS_LAST_OPC - MGS_FIRST_OPC)     + \
268                             (LLOG_LAST_OPC - LLOG_FIRST_OPC)   + \
269                             (SEC_LAST_OPC - SEC_FIRST_OPC))
270
271 #define EXTRA_MAX_OPCODES ((PTLRPC_LAST_CNTR - PTLRPC_FIRST_CNTR)  + \
272                            (EXTRA_LAST_OPC - EXTRA_FIRST_OPC))
273
274 enum {
275         PTLRPC_REQWAIT_CNTR = 0,
276         PTLRPC_REQQDEPTH_CNTR,
277         PTLRPC_REQACTIVE_CNTR,
278         PTLRPC_TIMEOUT,
279         PTLRPC_REQBUF_AVAIL_CNTR,
280         PTLRPC_LAST_CNTR
281 };
282
283 #define PTLRPC_FIRST_CNTR PTLRPC_REQWAIT_CNTR
284
285 enum {
286         LDLM_GLIMPSE_ENQUEUE = 0,
287         LDLM_PLAIN_ENQUEUE,
288         LDLM_EXTENT_ENQUEUE,
289         LDLM_FLOCK_ENQUEUE,
290         LDLM_IBITS_ENQUEUE,
291         MDS_REINT_CREATE,
292         MDS_REINT_LINK,
293         MDS_REINT_OPEN,
294         MDS_REINT_SETATTR,
295         MDS_REINT_RENAME,
296         MDS_REINT_UNLINK,
297         BRW_READ_BYTES,
298         BRW_WRITE_BYTES,
299         EXTRA_LAST_OPC
300 };
301
302 #define EXTRA_FIRST_OPC LDLM_GLIMPSE_ENQUEUE
303 /* class_obd.c */
304 extern cfs_proc_dir_entry_t *proc_lustre_root;
305
306 struct obd_device;
307 struct file;
308 struct obd_histogram;
309
310 /* Days / hours / mins / seconds format */
311 struct dhms {
312         int d,h,m,s;
313 };
314 static inline void s2dhms(struct dhms *ts, time_t secs)
315 {
316         ts->d = secs / 86400;
317         secs = secs % 86400;
318         ts->h = secs / 3600;
319         secs = secs % 3600;
320         ts->m = secs / 60;
321         ts->s = secs % 60;
322 }
323 #define DHMS_FMT "%dd%dh%02dm%02ds"
324 #define DHMS_VARS(x) (x)->d, (x)->h, (x)->m, (x)->s
325
326
327 #ifdef LPROCFS
328
329 static inline int lprocfs_stats_lock(struct lprocfs_stats *stats, int type)
330 {
331         int rc = 0;
332
333         if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
334                 if (type & LPROCFS_GET_NUM_CPU)
335                         rc = 1;
336                 if (type & LPROCFS_GET_SMP_ID)
337                         rc = 0;
338                 spin_lock(&stats->ls_lock);
339         } else {
340                 if (type & LPROCFS_GET_NUM_CPU)
341                         rc = num_possible_cpus();
342                 if (type & LPROCFS_GET_SMP_ID)
343                         rc = smp_processor_id();
344         }
345         return rc;
346 }
347
348 static inline void lprocfs_stats_unlock(struct lprocfs_stats *stats)
349 {
350         if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU)
351                 spin_unlock(&stats->ls_lock);
352 }
353
354 /* Two optimized LPROCFS counter increment functions are provided:
355  *     lprocfs_counter_incr(cntr, value) - optimized for by-one counters
356  *     lprocfs_counter_add(cntr) - use for multi-valued counters
357  * Counter data layout allows config flag, counter lock and the
358  * count itself to reside within a single cache line.
359  */
360
361 extern void lprocfs_counter_add(struct lprocfs_stats *stats, int idx,
362                                 long amount);
363 extern void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx,
364                                 long amount);
365
366 #define lprocfs_counter_incr(stats, idx) \
367         lprocfs_counter_add(stats, idx, 1)
368 #define lprocfs_counter_decr(stats, idx) \
369         lprocfs_counter_sub(stats, idx, 1)
370
371 extern __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
372                                  enum lprocfs_fields_flags field);
373 static inline __u64 lprocfs_stats_collector(struct lprocfs_stats *stats,
374                                             int idx,
375                                             enum lprocfs_fields_flags field)
376 {
377         __u64 ret = 0;
378         int i;
379
380         LASSERT(stats != NULL);
381         for (i = 0; i < num_possible_cpus(); i++)
382                 ret += lprocfs_read_helper(&(stats->ls_percpu[i]->lp_cntr[idx]),
383                                            field);
384         return ret;
385 }
386
387 extern struct lprocfs_stats *lprocfs_alloc_stats(unsigned int num,
388                                                  enum lprocfs_stats_flags flags);
389 extern void lprocfs_clear_stats(struct lprocfs_stats *stats);
390 extern void lprocfs_free_stats(struct lprocfs_stats **stats);
391 extern void lprocfs_init_ops_stats(int num_private_stats,
392                                    struct lprocfs_stats *stats);
393 extern int lprocfs_alloc_obd_stats(struct obd_device *obddev,
394                                    unsigned int num_private_stats);
395 extern void lprocfs_counter_init(struct lprocfs_stats *stats, int index,
396                                  unsigned conf, const char *name,
397                                  const char *units);
398 extern void lprocfs_free_obd_stats(struct obd_device *obddev);
399 struct obd_export;
400 struct nid_stat;
401 extern int lprocfs_add_clear_entry(struct obd_device * obd,
402                                    cfs_proc_dir_entry_t *entry);
403 extern int lprocfs_exp_setup(struct obd_export *exp,
404                              lnet_nid_t *peer_nid, int *newnid);
405 extern int lprocfs_exp_cleanup(struct obd_export *exp);
406 extern cfs_proc_dir_entry_t *lprocfs_add_simple(struct proc_dir_entry *root,
407                                                 char *name,
408                                                 cfs_read_proc_t *read_proc,
409                                                 cfs_write_proc_t *write_proc,
410                                                 void *data,
411                                                 struct file_operations *fops);
412 extern struct proc_dir_entry *lprocfs_add_symlink(const char *name,
413                         struct proc_dir_entry *parent, const char *dest);
414 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
415 extern int lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
416                                          unsigned long count, void *data);
417 extern int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
418                                         int count, int *eof,  void *data);
419
420 extern int lprocfs_register_stats(cfs_proc_dir_entry_t *root, const char *name,
421                                   struct lprocfs_stats *stats);
422
423 /* lprocfs_status.c */
424 extern int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
425                             struct lprocfs_vars *var,
426                             void *data);
427
428 extern cfs_proc_dir_entry_t *lprocfs_register(const char *name,
429                                                cfs_proc_dir_entry_t *parent,
430                                                struct lprocfs_vars *list,
431                                                void *data);
432
433 extern void lprocfs_remove(cfs_proc_dir_entry_t **root);
434 extern void lprocfs_remove_proc_entry(const char *name,
435                                       struct proc_dir_entry *parent);
436
437 extern cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *root,
438                                            const char *name);
439
440 extern int lprocfs_obd_setup(struct obd_device *obd, struct lprocfs_vars *list);
441 extern int lprocfs_obd_cleanup(struct obd_device *obd);
442 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
443 extern struct file_operations lprocfs_evict_client_fops;
444
445 extern int lprocfs_seq_create(cfs_proc_dir_entry_t *parent, char *name,
446                               mode_t mode, struct file_operations *seq_fops,
447                               void *data);
448 extern int lprocfs_obd_seq_create(struct obd_device *dev, char *name,
449                                   mode_t mode, struct file_operations *seq_fops,
450                                   void *data);
451
452 /* Generic callbacks */
453
454 extern int lprocfs_rd_u64(char *page, char **start, off_t off,
455                           int count, int *eof, void *data);
456 extern int lprocfs_rd_atomic(char *page, char **start, off_t off,
457                              int count, int *eof, void *data);
458 extern int lprocfs_wr_atomic(struct file *file, const char *buffer,
459                              unsigned long count, void *data);
460 extern int lprocfs_rd_uint(char *page, char **start, off_t off,
461                            int count, int *eof, void *data);
462 extern int lprocfs_wr_uint(struct file *file, const char *buffer,
463                            unsigned long count, void *data);
464 extern int lprocfs_rd_uuid(char *page, char **start, off_t off,
465                            int count, int *eof, void *data);
466 extern int lprocfs_rd_name(char *page, char **start, off_t off,
467                            int count, int *eof, void *data);
468 extern int lprocfs_rd_fstype(char *page, char **start, off_t off,
469                              int count, int *eof, void *data);
470 extern int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
471                                   int count, int *eof, void *data);
472 extern int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
473                                 int count, int *eof, void *data);
474 extern int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
475                                     int count, int *eof, void *data);
476 extern int lprocfs_rd_num_exports(char *page, char **start, off_t off,
477                                   int count, int *eof, void *data);
478 extern int lprocfs_rd_numrefs(char *page, char **start, off_t off,
479                               int count, int *eof, void *data);
480 struct adaptive_timeout;
481 extern int lprocfs_at_hist_helper(char *page, int count, int rc,
482                                   struct adaptive_timeout *at);
483 extern int lprocfs_rd_timeouts(char *page, char **start, off_t off,
484                                int count, int *eof, void *data);
485 extern int lprocfs_wr_timeouts(struct file *file, const char *buffer,
486                                unsigned long count, void *data);
487 extern int lprocfs_wr_evict_client(struct file *file, const char *buffer,
488                                    unsigned long count, void *data);
489 extern int lprocfs_wr_ping(struct file *file, const char *buffer,
490                            unsigned long count, void *data);
491
492 /* Statfs helpers */
493 extern int lprocfs_rd_blksize(char *page, char **start, off_t off,
494                               int count, int *eof, void *data);
495 extern int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
496                                   int count, int *eof, void *data);
497 extern int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
498                                  int count, int *eof, void *data);
499 extern int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
500                                  int count, int *eof, void *data);
501 extern int lprocfs_rd_filestotal(char *page, char **start, off_t off,
502                                  int count, int *eof, void *data);
503 extern int lprocfs_rd_filesfree(char *page, char **start, off_t off,
504                                 int count, int *eof, void *data);
505 extern int lprocfs_rd_filegroups(char *page, char **start, off_t off,
506                                  int count, int *eof, void *data);
507
508 extern int lprocfs_write_helper(const char *buffer, unsigned long count,
509                                 int *val);
510 extern int lprocfs_write_frac_helper(const char *buffer, unsigned long count,
511                                      int *val, int mult);
512 extern int lprocfs_read_frac_helper(char *buffer, unsigned long count,
513                                     long val, int mult);
514 extern int lprocfs_write_u64_helper(const char *buffer, unsigned long count,
515                                     __u64 *val);
516 extern int lprocfs_write_frac_u64_helper(const char *buffer, unsigned long count,
517                                          __u64 *val, int mult);
518 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value);
519 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value);
520 void lprocfs_oh_clear(struct obd_histogram *oh);
521 unsigned long lprocfs_oh_sum(struct obd_histogram *oh);
522
523 /* lprocfs_status.c: counter read/write functions */
524 extern int lprocfs_counter_read(char *page, char **start, off_t off,
525                                 int count, int *eof, void *data);
526 extern int lprocfs_counter_write(struct file *file, const char *buffer,
527                                  unsigned long count, void *data);
528
529 /* lprocfs_status.c: recovery status */
530 int lprocfs_obd_rd_recovery_status(char *page, char **start, off_t off,
531                                    int count, int *eof, void *data);
532
533 /* lprocfs_statuc.c: hash statistics */
534 int lprocfs_obd_rd_hash(char *page, char **start, off_t off,
535                         int count, int *eof, void *data);
536
537 extern int lprocfs_seq_release(struct inode *, struct file *);
538
539 /* in lprocfs_stat.c, to protect the private data for proc entries */
540 extern struct rw_semaphore _lprocfs_lock;
541 #define LPROCFS_ENTRY()           do {  \
542         down_read(&_lprocfs_lock);      \
543 } while(0)
544 #define LPROCFS_EXIT()            do {  \
545         up_read(&_lprocfs_lock);        \
546 } while(0)
547 #define LPROCFS_ENTRY_AND_CHECK(dp) do {        \
548         typecheck(struct proc_dir_entry *, dp); \
549         LPROCFS_ENTRY();                        \
550         if ((dp)->deleted) {                    \
551                 LPROCFS_EXIT();                 \
552                 return -ENODEV;                 \
553         }                                       \
554 } while(0)
555 #define LPROCFS_WRITE_ENTRY()     do {  \
556         down_write(&_lprocfs_lock);     \
557 } while(0)
558 #define LPROCFS_WRITE_EXIT()      do {  \
559         up_write(&_lprocfs_lock);       \
560 } while(0)
561
562 /* You must use these macros when you want to refer to
563  * the import in a client obd_device for a lprocfs entry */
564 #define LPROCFS_CLIMP_CHECK(obd) do {           \
565         typecheck(struct obd_device *, obd);    \
566         down_read(&(obd)->u.cli.cl_sem);        \
567         if ((obd)->u.cli.cl_import == NULL) {   \
568              up_read(&(obd)->u.cli.cl_sem);     \
569              return -ENODEV;                    \
570         }                                       \
571 } while(0)
572 #define LPROCFS_CLIMP_EXIT(obd)                 \
573         up_read(&(obd)->u.cli.cl_sem);
574
575
576 /* write the name##_seq_show function, call LPROC_SEQ_FOPS_RO for read-only
577   proc entries; otherwise, you will define name##_seq_write function also for
578   a read-write proc entry, and then call LPROC_SEQ_SEQ instead. Finally,
579   call lprocfs_obd_seq_create(obd, filename, 0444, &name#_fops, data); */
580 #define __LPROC_SEQ_FOPS(name, custom_seq_write)                           \
581 static int name##_seq_open(struct inode *inode, struct file *file) {       \
582         struct proc_dir_entry *dp = PDE(inode);                            \
583         int rc;                                                            \
584         LPROCFS_ENTRY_AND_CHECK(dp);                                       \
585         rc = single_open(file, name##_seq_show, dp->data);                 \
586         if (rc) {                                                          \
587                 LPROCFS_EXIT();                                            \
588                 return rc;                                                 \
589         }                                                                  \
590         return 0;                                                          \
591 }                                                                          \
592 struct file_operations name##_fops = {                                     \
593         .owner   = THIS_MODULE,                                            \
594         .open    = name##_seq_open,                                        \
595         .read    = seq_read,                                               \
596         .write   = custom_seq_write,                                       \
597         .llseek  = seq_lseek,                                              \
598         .release = lprocfs_seq_release,                                    \
599 }
600
601 #define LPROC_SEQ_FOPS_RO(name)         __LPROC_SEQ_FOPS(name, NULL)
602 #define LPROC_SEQ_FOPS(name)            __LPROC_SEQ_FOPS(name, name##_seq_write)
603
604 /* lproc_ptlrpc.c */
605 struct ptlrpc_request;
606 extern void target_print_req(void *seq_file, struct ptlrpc_request *req);
607
608 /* lprocfs_status.c: read recovery max time bz13079 */
609 int lprocfs_obd_rd_recovery_maxtime(char *page, char **start, off_t off,
610                                     int count, int *eof, void *data);
611
612 /* lprocfs_status.c: write recovery max time bz13079 */
613 int lprocfs_obd_wr_recovery_maxtime(struct file *file, const char *buffer,
614                                     unsigned long count, void *data);
615 #else
616 /* LPROCFS is not defined */
617 static inline void lprocfs_counter_add(struct lprocfs_stats *stats,
618                                        int index, long amount) { return; }
619 static inline void lprocfs_counter_incr(struct lprocfs_stats *stats,
620                                         int index) { return; }
621 static inline void lprocfs_counter_sub(struct lprocfs_stats *stats,
622                                        int index, long amount) { return; }
623 static inline void lprocfs_counter_init(struct lprocfs_stats *stats,
624                                         int index, unsigned conf,
625                                         const char *name, const char *units)
626 { return; }
627
628 static inline __u64 lc_read_helper(struct lprocfs_counter *lc,
629                                    enum lprocfs_fields_flags field)
630 { return 0; }
631
632 static inline struct lprocfs_stats* lprocfs_alloc_stats(unsigned int num,
633                                                         enum lprocfs_stats_flags flags)
634 { return NULL; }
635 static inline void lprocfs_clear_stats(struct lprocfs_stats *stats)
636 { return; }
637 static inline void lprocfs_free_stats(struct lprocfs_stats **stats)
638 { return; }
639 static inline int lprocfs_register_stats(cfs_proc_dir_entry_t *root,
640                                             const char *name,
641                                             struct lprocfs_stats *stats)
642 { return 0; }
643 static inline void lprocfs_init_ops_stats(int num_private_stats,
644                                           struct lprocfs_stats *stats)
645 { return; }
646 static inline int lprocfs_alloc_obd_stats(struct obd_device *obddev,
647                                              unsigned int num_private_stats)
648 { return 0; }
649 static inline void lprocfs_free_obd_stats(struct obd_device *obddev)
650 { return; }
651
652 struct obd_export;
653 static inline int lprocfs_add_clear_entry(struct obd_export *exp)
654 { return 0; }
655 static inline int lprocfs_exp_setup(struct obd_export *exp,
656                                     lnet_nid_t *peer_nid, int *newnid)
657 { return 0; }
658 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
659 { return 0; }
660 static inline cfs_proc_dir_entry_t *lprocfs_add_simple(struct proc_dir_entry *root,
661                                      char *name,
662                                      cfs_read_proc_t *read_proc,
663                                      cfs_write_proc_t *write_proc,
664                                      void *data,
665                                      struct file_operations *fops)
666 {return 0; }
667 static inline struct proc_dir_entry *lprocfs_add_symlink(const char *name,
668                         struct proc_dir_entry *parent, const char *dest)
669 {return NULL; }
670 static inline void lprocfs_free_per_client_stats(struct obd_device *obd)
671 {}
672 static inline
673 int lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
674                                   unsigned long count, void *data)
675 {return count;}
676 static inline
677 int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
678                                  int count, int *eof,  void *data)
679 {return count;}
680
681 static inline cfs_proc_dir_entry_t *
682 lprocfs_register(const char *name, cfs_proc_dir_entry_t *parent,
683                  struct lprocfs_vars *list, void *data) { return NULL; }
684 static inline int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
685                                    struct lprocfs_vars *var,
686                                    void *data) { return 0; }
687 static inline void lprocfs_remove(cfs_proc_dir_entry_t **root) {};
688 static inline void lprocfs_remove_proc_entry(const char *name,
689                                              struct proc_dir_entry *parent) {};
690 static inline cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *head,
691                                     const char *name) {return 0;}
692 static inline int lprocfs_obd_setup(struct obd_device *dev,
693                                     struct lprocfs_vars *list) { return 0; }
694 static inline int lprocfs_obd_cleanup(struct obd_device *dev)  { return 0; }
695 static inline int lprocfs_rd_u64(char *page, char **start, off_t off,
696                                  int count, int *eof, void *data) { return 0; }
697 static inline int lprocfs_rd_uuid(char *page, char **start, off_t off,
698                                   int count, int *eof, void *data) { return 0; }
699 static inline int lprocfs_rd_name(char *page, char **start, off_t off,
700                                   int count, int *eof, void *data) { return 0; }
701 static inline int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
702                                          int count, int *eof, void *data)
703 { return 0; }
704 static inline int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
705                                        int count, int *eof, void *data)
706 { return 0; }
707 static inline int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
708                                            int count, int *eof, void *data)
709 { return 0; }
710 static inline int lprocfs_rd_num_exports(char *page, char **start, off_t off,
711                                          int count, int *eof, void *data)
712 { return 0; }
713 static inline int lprocfs_rd_numrefs(char *page, char **start, off_t off,
714                                      int count, int *eof, void *data)
715 { return 0; }
716 struct adaptive_timeout;
717 static inline int lprocfs_at_hist_helper(char *page, int count, int rc,
718                                          struct adaptive_timeout *at)
719 { return 0; }
720 static inline int lprocfs_rd_timeouts(char *page, char **start, off_t off,
721                                       int count, int *eof, void *data)
722 { return 0; }
723 static inline int lprocfs_wr_timeouts(struct file *file, const char *buffer,
724                                       unsigned long count, void *data)
725 { return 0; }
726 static inline int lprocfs_wr_evict_client(struct file *file, const char *buffer,
727                                           unsigned long count, void *data)
728 { return 0; }
729 static inline int lprocfs_wr_ping(struct file *file, const char *buffer,
730                                   unsigned long count, void *data)
731 { return 0; }
732
733
734 /* Statfs helpers */
735 static inline
736 int lprocfs_rd_blksize(char *page, char **start, off_t off,
737                        int count, int *eof, void *data) { return 0; }
738 static inline
739 int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
740                            int count, int *eof, void *data) { return 0; }
741 static inline
742 int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
743                           int count, int *eof, void *data) { return 0; }
744 static inline
745 int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
746                            int count, int *eof, void *data) { return 0; }
747 static inline
748 int lprocfs_rd_filestotal(char *page, char **start, off_t off,
749                           int count, int *eof, void *data) { return 0; }
750 static inline
751 int lprocfs_rd_filesfree(char *page, char **start, off_t off,
752                          int count, int *eof, void *data)  { return 0; }
753 static inline
754 int lprocfs_rd_filegroups(char *page, char **start, off_t off,
755                           int count, int *eof, void *data) { return 0; }
756 static inline
757 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value) {}
758 static inline
759 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value) {}
760 static inline
761 void lprocfs_oh_clear(struct obd_histogram *oh) {}
762 static inline
763 unsigned long lprocfs_oh_sum(struct obd_histogram *oh) { return 0; }
764 static inline
765 int lprocfs_counter_read(char *page, char **start, off_t off,
766                          int count, int *eof, void *data) { return 0; }
767 static inline
768 int lprocfs_counter_write(struct file *file, const char *buffer,
769                           unsigned long count, void *data) { return 0; }
770
771 static inline
772 __u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
773                                enum lprocfs_fields_flags field)
774 { return (__u64)0; }
775
776 #define LPROCFS_ENTRY()
777 #define LPROCFS_EXIT()
778 #define LPROCFS_ENTRY_AND_CHECK(dp)
779 #define LPROC_SEQ_FOPS_RO(name)
780 #define LPROC_SEQ_FOPS(name)
781
782 /* lproc_ptlrpc.c */
783 #define target_print_req NULL
784
785 #endif /* LPROCFS */
786
787 #endif /* LPROCFS_SNMP_H */