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