Whamcloud - gitweb
771f226b2d03cce8f22b3547a622ecf7fd08e29a
[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 (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * Copyright (c) 2011 Whamcloud, Inc.
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  *
39  * lustre/include/lprocfs_status.h
40  *
41  * Top level header file for LProc SNMP
42  *
43  * Author: Hariharan Thantry thantry@users.sourceforge.net
44  */
45 #ifndef _LPROCFS_SNMP_H
46 #define _LPROCFS_SNMP_H
47
48 #if defined(__linux__)
49 #include <linux/lprocfs_status.h>
50 #elif defined(__APPLE__)
51 #include <darwin/lprocfs_status.h>
52 #elif defined(__WINNT__)
53 #include <winnt/lprocfs_status.h>
54 #else
55 #error Unsupported operating system.
56 #endif
57 #include <lustre/lustre_idl.h>
58 #include <libcfs/params_tree.h>
59
60 struct lprocfs_vars {
61         const char             *name;
62         cfs_read_proc_t        *read_fptr;
63         cfs_write_proc_t       *write_fptr;
64         void                   *data;
65         struct file_operations *fops;
66         /**
67          * /proc file mode.
68          */
69         mode_t                  proc_mode;
70 };
71
72 struct lprocfs_static_vars {
73         struct lprocfs_vars *module_vars;
74         struct lprocfs_vars *obd_vars;
75 };
76
77 /* if we find more consumers this could be generalized */
78 #define OBD_HIST_MAX 32
79 struct obd_histogram {
80         cfs_spinlock_t oh_lock;
81         unsigned long  oh_buckets[OBD_HIST_MAX];
82 };
83
84 enum {
85         BRW_R_PAGES = 0,
86         BRW_W_PAGES,
87         BRW_R_RPC_HIST,
88         BRW_W_RPC_HIST,
89         BRW_R_IO_TIME,
90         BRW_W_IO_TIME,
91         BRW_R_DISCONT_PAGES,
92         BRW_W_DISCONT_PAGES,
93         BRW_R_DISCONT_BLOCKS,
94         BRW_W_DISCONT_BLOCKS,
95         BRW_R_DISK_IOSIZE,
96         BRW_W_DISK_IOSIZE,
97         BRW_R_DIO_FRAGS,
98         BRW_W_DIO_FRAGS,
99         BRW_LAST,
100 };
101
102 struct brw_stats {
103         struct obd_histogram hist[BRW_LAST];
104 };
105
106
107 /* An lprocfs counter can be configured using the enum bit masks below.
108  *
109  * LPROCFS_CNTR_EXTERNALLOCK indicates that an external lock already
110  * protects this counter from concurrent updates. If not specified,
111  * lprocfs an internal per-counter lock variable. External locks are
112  * not used to protect counter increments, but are used to protect
113  * counter readout and resets.
114  *
115  * LPROCFS_CNTR_AVGMINMAX indicates a multi-valued counter samples,
116  * (i.e. counter can be incremented by more than "1"). When specified,
117  * the counter maintains min, max and sum in addition to a simple
118  * invocation count. This allows averages to be be computed.
119  * If not specified, the counter is an increment-by-1 counter.
120  * min, max, sum, etc. are not maintained.
121  *
122  * LPROCFS_CNTR_STDDEV indicates that the counter should track sum of
123  * squares (for multi-valued counter samples only). This allows
124  * external computation of standard deviation, but involves a 64-bit
125  * multiply per counter increment.
126  */
127
128 enum {
129         LPROCFS_CNTR_EXTERNALLOCK = 0x0001,
130         LPROCFS_CNTR_AVGMINMAX    = 0x0002,
131         LPROCFS_CNTR_STDDEV       = 0x0004,
132
133         /* counter data type */
134         LPROCFS_TYPE_REGS         = 0x0100,
135         LPROCFS_TYPE_BYTES        = 0x0200,
136         LPROCFS_TYPE_PAGES        = 0x0400,
137         LPROCFS_TYPE_CYCLE        = 0x0800,
138 };
139
140 struct lprocfs_atomic {
141         cfs_atomic_t               la_entry;
142         cfs_atomic_t               la_exit;
143 };
144
145 #define LC_MIN_INIT ((~(__u64)0) >> 1)
146
147 struct lprocfs_counter {
148         struct lprocfs_atomic  lc_cntl;  /* may need to move to per set */
149         unsigned int           lc_config;
150         __s64                  lc_count;
151         __s64                  lc_sum;
152         __s64                  lc_sum_irq;
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 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
162         __s64                  pad;
163 #endif
164         struct lprocfs_counter lp_cntr[0];
165 };
166
167 #define LPROCFS_GET_NUM_CPU 0x0001
168 #define LPROCFS_GET_SMP_ID  0x0002
169
170 enum lprocfs_stats_flags {
171         LPROCFS_STATS_FLAG_NONE     = 0x0000, /* per cpu counter */
172         LPROCFS_STATS_FLAG_NOPERCPU = 0x0001, /* stats have no percpu
173                                                * area and need locking */
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         cfs_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 obd_histogram;
329
330 /* Days / hours / mins / seconds format */
331 struct dhms {
332         int d,h,m,s;
333 };
334 static inline void s2dhms(struct dhms *ts, time_t secs)
335 {
336         ts->d = secs / 86400;
337         secs = secs % 86400;
338         ts->h = secs / 3600;
339         secs = secs % 3600;
340         ts->m = secs / 60;
341         ts->s = secs % 60;
342 }
343 #define DHMS_FMT "%dd%dh%02dm%02ds"
344 #define DHMS_VARS(x) (x)->d, (x)->h, (x)->m, (x)->s
345
346
347 #ifdef LPROCFS
348
349 static inline int lprocfs_stats_lock(struct lprocfs_stats *stats, int opc)
350 {
351         switch (opc) {
352         default:
353                 LBUG();
354
355         case LPROCFS_GET_SMP_ID:
356                 if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
357                         cfs_spin_lock(&stats->ls_lock);
358                         return 0;
359                 } else {
360                         return cfs_get_cpu();
361                 }
362
363         case LPROCFS_GET_NUM_CPU:
364                 if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
365                         cfs_spin_lock(&stats->ls_lock);
366                         return 1;
367                 } else {
368                         return cfs_num_possible_cpus();
369                 }
370         }
371 }
372
373 static inline void lprocfs_stats_unlock(struct lprocfs_stats *stats, int opc)
374 {
375         switch (opc) {
376         default:
377                 LBUG();
378
379         case LPROCFS_GET_SMP_ID:
380                 if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU)
381                         cfs_spin_unlock(&stats->ls_lock);
382                 else
383                         cfs_put_cpu();
384                 return;
385
386         case LPROCFS_GET_NUM_CPU:
387                 if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU)
388                         cfs_spin_unlock(&stats->ls_lock);
389                 return;
390         }
391 }
392
393 /* Two optimized LPROCFS counter increment functions are provided:
394  *     lprocfs_counter_incr(cntr, value) - optimized for by-one counters
395  *     lprocfs_counter_add(cntr) - use for multi-valued counters
396  * Counter data layout allows config flag, counter lock and the
397  * count itself to reside within a single cache line.
398  */
399
400 extern void lprocfs_counter_add(struct lprocfs_stats *stats, int idx,
401                                 long amount);
402 extern void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx,
403                                 long amount);
404
405 #define lprocfs_counter_incr(stats, idx) \
406         lprocfs_counter_add(stats, idx, 1)
407 #define lprocfs_counter_decr(stats, idx) \
408         lprocfs_counter_sub(stats, idx, 1)
409
410 extern __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
411                                  enum lprocfs_fields_flags field);
412 static inline __u64 lprocfs_stats_collector(struct lprocfs_stats *stats,
413                                             int idx,
414                                             enum lprocfs_fields_flags field)
415 {
416         __u64 ret = 0;
417         int i;
418
419         LASSERT(stats != NULL);
420         for (i = 0; i < cfs_num_possible_cpus(); i++)
421                 ret += lprocfs_read_helper(&(stats->ls_percpu[i]->lp_cntr[idx]),
422                                            field);
423         return ret;
424 }
425
426 extern struct lprocfs_stats *
427 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags);
428 extern void lprocfs_clear_stats(struct lprocfs_stats *stats);
429 extern void lprocfs_free_stats(struct lprocfs_stats **stats);
430 extern void lprocfs_init_ops_stats(int num_private_stats,
431                                    struct lprocfs_stats *stats);
432 extern void lprocfs_init_mps_stats(int num_private_stats,
433                                    struct lprocfs_stats *stats);
434 extern void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats);
435 extern int lprocfs_alloc_obd_stats(struct obd_device *obddev,
436                                    unsigned int num_private_stats);
437 extern int lprocfs_alloc_md_stats(struct obd_device *obddev,
438                                   unsigned int num_private_stats);
439 extern void lprocfs_counter_init(struct lprocfs_stats *stats, int index,
440                                  unsigned conf, const char *name,
441                                  const char *units);
442 extern void lprocfs_free_obd_stats(struct obd_device *obddev);
443 extern void lprocfs_free_md_stats(struct obd_device *obddev);
444 struct obd_export;
445 struct nid_stat;
446 extern int lprocfs_add_clear_entry(struct obd_device * obd,
447                                    cfs_proc_dir_entry_t *entry);
448 extern int lprocfs_exp_setup(struct obd_export *exp,
449                              lnet_nid_t *peer_nid, int *newnid);
450 extern int lprocfs_exp_cleanup(struct obd_export *exp);
451 extern cfs_proc_dir_entry_t *lprocfs_add_simple(struct proc_dir_entry *root,
452                                                 char *name,
453                                                 cfs_read_proc_t *read_proc,
454                                                 cfs_write_proc_t *write_proc,
455                                                 void *data,
456                                                 struct file_operations *fops);
457 extern struct proc_dir_entry *
458 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
459                     const char *format, ...);
460 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
461 extern int
462 lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
463                               unsigned long count, void *data);
464 extern int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
465                                         int count, int *eof,  void *data);
466
467 extern int lprocfs_register_stats(cfs_proc_dir_entry_t *root, const char *name,
468                                   struct lprocfs_stats *stats);
469
470 /* lprocfs_status.c */
471 extern int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
472                             struct lprocfs_vars *var,
473                             void *data);
474
475 extern cfs_proc_dir_entry_t *lprocfs_register(const char *name,
476                                               cfs_proc_dir_entry_t *parent,
477                                               struct lprocfs_vars *list,
478                                               void *data);
479
480 extern void lprocfs_remove(cfs_proc_dir_entry_t **root);
481 extern void lprocfs_remove_proc_entry(const char *name,
482                                       struct proc_dir_entry *parent);
483
484 extern cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *root,
485                                           const char *name);
486
487 extern int lprocfs_obd_setup(struct obd_device *obd, struct lprocfs_vars *list);
488 extern int lprocfs_obd_cleanup(struct obd_device *obd);
489 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
490 extern struct file_operations lprocfs_evict_client_fops;
491
492 extern int lprocfs_seq_create(cfs_proc_dir_entry_t *parent, char *name,
493                               mode_t mode, struct file_operations *seq_fops,
494                               void *data);
495 extern int lprocfs_obd_seq_create(struct obd_device *dev, char *name,
496                                   mode_t mode, struct file_operations *seq_fops,
497                                   void *data);
498
499 /* Generic callbacks */
500
501 extern int lprocfs_rd_u64(char *page, char **start, off_t off,
502                           int count, int *eof, void *data);
503 extern int lprocfs_rd_atomic(char *page, char **start, off_t off,
504                              int count, int *eof, void *data);
505 extern int lprocfs_wr_atomic(struct file *file, const char *buffer,
506                              unsigned long count, void *data);
507 extern int lprocfs_rd_uint(char *page, char **start, off_t off,
508                            int count, int *eof, void *data);
509 extern int lprocfs_wr_uint(struct file *file, const char *buffer,
510                            unsigned long count, void *data);
511 extern int lprocfs_rd_uuid(char *page, char **start, off_t off,
512                            int count, int *eof, void *data);
513 extern int lprocfs_rd_name(char *page, char **start, off_t off,
514                            int count, int *eof, void *data);
515 extern int lprocfs_rd_fstype(char *page, char **start, off_t off,
516                              int count, int *eof, void *data);
517 extern int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
518                                   int count, int *eof, void *data);
519 extern int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
520                                 int count, int *eof, void *data);
521 extern int lprocfs_rd_import(char *page, char **start, off_t off, int count,
522                              int *eof, void *data);
523 extern int lprocfs_rd_state(char *page, char **start, off_t off, int count,
524                             int *eof, void *data);
525 extern int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
526                                     int count, int *eof, void *data);
527 extern int lprocfs_rd_num_exports(char *page, char **start, off_t off,
528                                   int count, int *eof, void *data);
529 extern int lprocfs_rd_numrefs(char *page, char **start, off_t off,
530                               int count, int *eof, void *data);
531 struct adaptive_timeout;
532 extern int lprocfs_at_hist_helper(char *page, int count, int rc,
533                                   struct adaptive_timeout *at);
534 extern int lprocfs_rd_timeouts(char *page, char **start, off_t off,
535                                int count, int *eof, void *data);
536 extern int lprocfs_wr_timeouts(struct file *file, const char *buffer,
537                                unsigned long count, void *data);
538 extern int lprocfs_wr_evict_client(struct file *file, const char *buffer,
539                                    unsigned long count, void *data);
540 extern int lprocfs_wr_ping(struct file *file, const char *buffer,
541                            unsigned long count, void *data);
542 extern int lprocfs_wr_import(struct file *file, const char *buffer,
543                              unsigned long count, void *data);
544
545 /* Statfs helpers */
546 extern int lprocfs_rd_blksize(char *page, char **start, off_t off,
547                               int count, int *eof, void *data);
548 extern int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
549                                   int count, int *eof, void *data);
550 extern int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
551                                  int count, int *eof, void *data);
552 extern int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
553                                  int count, int *eof, void *data);
554 extern int lprocfs_rd_filestotal(char *page, char **start, off_t off,
555                                  int count, int *eof, void *data);
556 extern int lprocfs_rd_filesfree(char *page, char **start, off_t off,
557                                 int count, int *eof, void *data);
558 extern int lprocfs_rd_filegroups(char *page, char **start, off_t off,
559                                  int count, int *eof, void *data);
560
561 extern int lprocfs_write_helper(const char *buffer, unsigned long count,
562                                 int *val);
563 extern int lprocfs_write_frac_helper(const char *buffer, unsigned long count,
564                                      int *val, int mult);
565 extern int lprocfs_read_frac_helper(char *buffer, unsigned long count,
566                                     long val, int mult);
567 extern int lprocfs_write_u64_helper(const char *buffer, unsigned long count,
568                                     __u64 *val);
569 extern int lprocfs_write_frac_u64_helper(const char *buffer,
570                                          unsigned long count,
571                                          __u64 *val, int mult);
572 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value);
573 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value);
574 void lprocfs_oh_clear(struct obd_histogram *oh);
575 unsigned long lprocfs_oh_sum(struct obd_histogram *oh);
576
577 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
578                            struct lprocfs_counter *cnt);
579
580 /* lprocfs_status.c: recovery status */
581 int lprocfs_obd_rd_recovery_status(char *page, char **start, off_t off,
582                                    int count, int *eof, void *data);
583
584 /* lprocfs_statuc.c: hash statistics */
585 int lprocfs_obd_rd_hash(char *page, char **start, off_t off,
586                         int count, int *eof, void *data);
587
588 /* lprocfs_status.c: IR factor */
589 int lprocfs_obd_rd_ir_factor(char *page, char **start, off_t off,
590                              int count, int *eof, void *data);
591 int lprocfs_obd_wr_ir_factor(struct file *file, const char *buffer,
592                              unsigned long count, void *data);
593
594 extern int lprocfs_seq_release(cfs_inode_t *, struct file *);
595
596 /* You must use these macros when you want to refer to
597  * the import in a client obd_device for a lprocfs entry */
598 #define LPROCFS_CLIMP_CHECK(obd) do {           \
599         typecheck(struct obd_device *, obd);    \
600         cfs_down_read(&(obd)->u.cli.cl_sem);    \
601         if ((obd)->u.cli.cl_import == NULL) {   \
602              cfs_up_read(&(obd)->u.cli.cl_sem); \
603              return -ENODEV;                    \
604         }                                       \
605 } while(0)
606 #define LPROCFS_CLIMP_EXIT(obd)                 \
607         cfs_up_read(&(obd)->u.cli.cl_sem);
608
609
610 /* write the name##_seq_show function, call LPROC_SEQ_FOPS_RO for read-only
611   proc entries; otherwise, you will define name##_seq_write function also for
612   a read-write proc entry, and then call LPROC_SEQ_SEQ instead. Finally,
613   call lprocfs_obd_seq_create(obd, filename, 0444, &name#_fops, data); */
614 #define __LPROC_SEQ_FOPS(name, custom_seq_write)                           \
615 static int name##_seq_open(cfs_inode_t *inode, struct file *file) {        \
616         struct proc_dir_entry *dp = PDE(inode);                            \
617         int rc;                                                            \
618         LPROCFS_ENTRY_AND_CHECK(dp);                                       \
619         rc = single_open(file, name##_seq_show, dp->data);                 \
620         if (rc) {                                                          \
621                 LPROCFS_EXIT();                                            \
622                 return rc;                                                 \
623         }                                                                  \
624         return 0;                                                          \
625 }                                                                          \
626 struct file_operations name##_fops = {                                     \
627         .owner   = THIS_MODULE,                                            \
628         .open    = name##_seq_open,                                        \
629         .read    = seq_read,                                               \
630         .write   = custom_seq_write,                                       \
631         .llseek  = seq_lseek,                                              \
632         .release = lprocfs_seq_release,                                    \
633 }
634
635 #define LPROC_SEQ_FOPS_RO(name)         __LPROC_SEQ_FOPS(name, NULL)
636 #define LPROC_SEQ_FOPS(name)            __LPROC_SEQ_FOPS(name, name##_seq_write)
637
638 /* lproc_ptlrpc.c */
639 struct ptlrpc_request;
640 extern void target_print_req(void *seq_file, struct ptlrpc_request *req);
641
642 /* lproc_status.c */
643 int lprocfs_obd_rd_recovery_time_soft(char *page, char **start, off_t off,
644                                       int count, int *eof, void *data);
645 int lprocfs_obd_wr_recovery_time_soft(struct file *file,
646                                       const char *buffer,
647                                       unsigned long count, void *data);
648 int lprocfs_obd_rd_recovery_time_hard(char *page, char **start, off_t off,
649                                       int count, int *eof, void *data);
650 int lprocfs_obd_wr_recovery_time_hard(struct file *file,
651                                       const char *buffer,
652                                       unsigned long count, void *data);
653 int lprocfs_obd_rd_mntdev(char *page, char **start, off_t off,
654                           int count, int *eof, void *data);
655 int lprocfs_obd_rd_max_pages_per_rpc(char *page, char **start, off_t off,
656                                      int count, int *eof, void *data);
657 int lprocfs_obd_wr_max_pages_per_rpc(struct file *file, const char *buffer,
658                                      unsigned long count, void *data);
659 int lprocfs_target_rd_instance(char *page, char **start, off_t off,
660                                int count, int *eof, void *data);
661
662 /* all quota proc functions */
663 extern int lprocfs_quota_rd_bunit(char *page, char **start,
664                                   off_t off, int count,
665                                   int *eof, void *data);
666 extern int lprocfs_quota_wr_bunit(struct file *file, const char *buffer,
667                                   unsigned long count, void *data);
668 extern int lprocfs_quota_rd_btune(char *page, char **start,
669                                   off_t off, int count,
670                                   int *eof, void *data);
671 extern int lprocfs_quota_wr_btune(struct file *file, const char *buffer,
672                                   unsigned long count, void *data);
673 extern int lprocfs_quota_rd_iunit(char *page, char **start,
674                                   off_t off, int count,
675                                   int *eof, void *data);
676 extern int lprocfs_quota_wr_iunit(struct file *file, const char *buffer,
677                                   unsigned long count, void *data);
678 extern int lprocfs_quota_rd_itune(char *page, char **start,
679                                   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,
690                                            const char *buffer,
691                                            unsigned long count, void *data);
692 extern int lprocfs_quota_rd_sync_blk(char *page, char **start, off_t off,
693                                      int count, int *eof, void *data);
694 extern int lprocfs_quota_wr_sync_blk(struct file *file, const char *buffer,
695                                      unsigned long count, void *data);
696 extern int lprocfs_quota_rd_switch_qs(char *page, char **start, off_t off,
697                                       int count, int *eof, void *data);
698 extern int lprocfs_quota_wr_switch_qs(struct file *file,
699                                       const char *buffer,
700                                       unsigned long count, void *data);
701 extern int lprocfs_quota_rd_boundary_factor(char *page, char **start, off_t off,
702                                             int count, int *eof, void *data);
703 extern int lprocfs_quota_wr_boundary_factor(struct file *file,
704                                             const char *buffer,
705                                             unsigned long count, void *data);
706 extern int lprocfs_quota_rd_least_bunit(char *page, char **start, off_t off,
707                                         int count, int *eof, void *data);
708 extern int lprocfs_quota_wr_least_bunit(struct file *file,
709                                         const char *buffer,
710                                         unsigned long count, void *data);
711 extern int lprocfs_quota_rd_least_iunit(char *page, char **start, off_t off,
712                                         int count, int *eof, void *data);
713 extern int lprocfs_quota_wr_least_iunit(struct file *file,
714                                         const char *buffer,
715                                         unsigned long count, void *data);
716 extern int lprocfs_quota_rd_qs_factor(char *page, char **start, off_t off,
717                                       int count, int *eof, void *data);
718 extern int lprocfs_quota_wr_qs_factor(struct file *file,
719                                       const char *buffer,
720                                       unsigned long count, void *data);
721
722
723
724 #else
725 /* LPROCFS is not defined */
726
727
728
729 static inline void lprocfs_counter_add(struct lprocfs_stats *stats,
730                                        int index, long amount)
731 { return; }
732 static inline void lprocfs_counter_incr(struct lprocfs_stats *stats,
733                                         int index)
734 { return; }
735 static inline void lprocfs_counter_sub(struct lprocfs_stats *stats,
736                                        int index, long amount)
737 { return; }
738 static inline void lprocfs_counter_decr(struct lprocfs_stats *stats,
739                                         int index)
740 { return; }
741 static inline void lprocfs_counter_init(struct lprocfs_stats *stats,
742                                         int index, unsigned conf,
743                                         const char *name, const char *units)
744 { return; }
745
746 static inline __u64 lc_read_helper(struct lprocfs_counter *lc,
747                                    enum lprocfs_fields_flags field)
748 { return 0; }
749
750 /* NB: we return !NULL to satisfy error checker */
751 static inline struct lprocfs_stats *
752 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags)
753 { return (struct lprocfs_stats *)1; }
754 static inline void lprocfs_clear_stats(struct lprocfs_stats *stats)
755 { return; }
756 static inline void lprocfs_free_stats(struct lprocfs_stats **stats)
757 { return; }
758 static inline int lprocfs_register_stats(cfs_proc_dir_entry_t *root,
759                                          const char *name,
760                                          struct lprocfs_stats *stats)
761 { return 0; }
762 static inline void lprocfs_init_ops_stats(int num_private_stats,
763                                           struct lprocfs_stats *stats)
764 { return; }
765 static inline void lprocfs_init_mps_stats(int num_private_stats,
766                                           struct lprocfs_stats *stats)
767 { return; }
768 static inline void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats)
769 { return; }
770 static inline int lprocfs_alloc_obd_stats(struct obd_device *obddev,
771                                           unsigned int num_private_stats)
772 { return 0; }
773 static inline int lprocfs_alloc_md_stats(struct obd_device *obddev,
774                                          unsigned int num_private_stats)
775 { return 0; }
776 static inline void lprocfs_free_obd_stats(struct obd_device *obddev)
777 { return; }
778 static inline void lprocfs_free_md_stats(struct obd_device *obddev)
779 { return; }
780
781 struct obd_export;
782 static inline int lprocfs_add_clear_entry(struct obd_export *exp)
783 { return 0; }
784 static inline int lprocfs_exp_setup(struct obd_export *exp,lnet_nid_t *peer_nid,
785                                     int *newnid)
786 { return 0; }
787 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
788 { return 0; }
789 static inline cfs_proc_dir_entry_t *
790 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
791                    cfs_read_proc_t *read_proc, cfs_write_proc_t *write_proc,
792                    void *data, struct file_operations *fops)
793 {return 0; }
794 static inline struct proc_dir_entry *
795 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
796                     const char *format, ...)
797 {return NULL; }
798 static inline void lprocfs_free_per_client_stats(struct obd_device *obd)
799 { return; }
800 static inline
801 int lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
802                                   unsigned long count, void *data)
803 {return count;}
804 static inline
805 int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
806                                  int count, int *eof,  void *data)
807 {return count;}
808
809 static inline cfs_proc_dir_entry_t *
810 lprocfs_register(const char *name, cfs_proc_dir_entry_t *parent,
811                  struct lprocfs_vars *list, void *data)
812 { return NULL; }
813 static inline int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
814                                    struct lprocfs_vars *var,
815                                    void *data)
816 { return 0; }
817 static inline void lprocfs_remove(cfs_proc_dir_entry_t **root)
818 { return; }
819 static inline void lprocfs_remove_proc_entry(const char *name,
820                                              struct proc_dir_entry *parent)
821 { return; }
822 static inline cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *head,
823                                                  const char *name)
824 { return 0; }
825 static inline int lprocfs_obd_setup(struct obd_device *dev,
826                                     struct lprocfs_vars *list)
827 { return 0; }
828 static inline int lprocfs_obd_cleanup(struct obd_device *dev)
829 { return 0; }
830 static inline int lprocfs_rd_u64(char *page, char **start, off_t off,
831                                  int count, int *eof, void *data)
832 { return 0; }
833 static inline int lprocfs_rd_uuid(char *page, char **start, off_t off,
834                                   int count, int *eof, void *data)
835 { return 0; }
836 static inline int lprocfs_rd_name(char *page, char **start, off_t off,
837                                   int count, int *eof, void *data)
838 { return 0; }
839 static inline int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
840                                          int count, int *eof, void *data)
841 { return 0; }
842 static inline int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
843                                        int count, int *eof, void *data)
844 { return 0; }
845 static inline int lprocfs_rd_import(char *page, char **start, off_t off,
846                                     int count, int *eof, void *data)
847 { return 0; }
848 static inline int lprocfs_rd_state(char *page, char **start, off_t off,
849                                    int count, int *eof, void *data)
850 { return 0; }
851 static inline int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
852                                            int count, int *eof, void *data)
853 { return 0; }
854 static inline int lprocfs_rd_num_exports(char *page, char **start, off_t off,
855                                          int count, int *eof, void *data)
856 { return 0; }
857 static inline int lprocfs_rd_numrefs(char *page, char **start, off_t off,
858                                      int count, int *eof, void *data)
859 { return 0; }
860 struct adaptive_timeout;
861 static inline int lprocfs_at_hist_helper(char *page, int count, int rc,
862                                          struct adaptive_timeout *at)
863 { return 0; }
864 static inline int lprocfs_rd_timeouts(char *page, char **start, off_t off,
865                                       int count, int *eof, void *data)
866 { return 0; }
867 static inline int lprocfs_wr_timeouts(struct file *file,
868                                       const char *buffer,
869                                       unsigned long count, void *data)
870 { return 0; }
871 static inline int lprocfs_wr_evict_client(struct file *file,
872                                           const char *buffer,
873                                           unsigned long count, void *data)
874 { return 0; }
875 static inline int lprocfs_wr_ping(struct file *file, const char *buffer,
876                                   unsigned long count, void *data)
877 { return 0; }
878 static inline int lprocfs_wr_import(struct file *file, const char *buffer,
879                                     unsigned long count, void *data)
880 { return 0; }
881
882 /* Statfs helpers */
883 static inline
884 int lprocfs_rd_blksize(char *page, char **start, off_t off,
885                        int count, int *eof, void *data)
886 { return 0; }
887 static inline
888 int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
889                            int count, int *eof, void *data)
890 { return 0; }
891 static inline
892 int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
893                           int count, int *eof, void *data)
894 { return 0; }
895 static inline
896 int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
897                            int count, int *eof, void *data)
898 { return 0; }
899 static inline
900 int lprocfs_rd_filestotal(char *page, char **start, off_t off,
901                           int count, int *eof, void *data)
902 { return 0; }
903 static inline
904 int lprocfs_rd_filesfree(char *page, char **start, off_t off,
905                          int count, int *eof, void *data)
906 { return 0; }
907 static inline
908 int lprocfs_rd_filegroups(char *page, char **start, off_t off,
909                           int count, int *eof, void *data)
910 { return 0; }
911 static inline
912 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value)
913 { return; }
914 static inline
915 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value)
916 { return; }
917 static inline
918 void lprocfs_oh_clear(struct obd_histogram *oh)
919 { return; }
920 static inline
921 unsigned long lprocfs_oh_sum(struct obd_histogram *oh)
922 { return 0; }
923 static inline
924 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
925                            struct lprocfs_counter *cnt)
926 { return; }
927 static inline
928 __u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
929                                enum lprocfs_fields_flags field)
930 { return (__u64)0; }
931
932 #define LPROC_SEQ_FOPS_RO(name)
933 #define LPROC_SEQ_FOPS(name)
934
935 /* lproc_ptlrpc.c */
936 #define target_print_req NULL
937
938 #endif /* LPROCFS */
939
940 #endif /* LPROCFS_SNMP_H */