Whamcloud - gitweb
78e10f0e259bf5a8fa3f3b46d1d64c16438063df
[fs/lustre-release.git] / lustre / include / lprocfs_status.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2015, Intel Corporation.
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
39  *
40  * Author: Hariharan Thantry thantry@users.sourceforge.net
41  */
42 #ifndef _LPROCFS_STATUS_H
43 #define _LPROCFS_STATUS_H
44
45 #include <linux/fs.h>
46 #include <linux/proc_fs.h>
47 #include <linux/rwsem.h>
48 #include <linux/spinlock.h>
49 #include <linux/seq_file.h>
50
51 #include <lustre/lustre_idl.h>
52
53 struct lprocfs_vars {
54         const char                      *name;
55         const struct file_operations    *fops;
56         void                            *data;
57         /**
58          * /proc file mode.
59          */
60         mode_t                           proc_mode;
61 };
62
63 /* if we find more consumers this could be generalized */
64 #define OBD_HIST_MAX 32
65 struct obd_histogram {
66         spinlock_t      oh_lock;
67         unsigned long   oh_buckets[OBD_HIST_MAX];
68 };
69
70 enum {
71         BRW_R_PAGES = 0,
72         BRW_W_PAGES,
73         BRW_R_RPC_HIST,
74         BRW_W_RPC_HIST,
75         BRW_R_IO_TIME,
76         BRW_W_IO_TIME,
77         BRW_R_DISCONT_PAGES,
78         BRW_W_DISCONT_PAGES,
79         BRW_R_DISCONT_BLOCKS,
80         BRW_W_DISCONT_BLOCKS,
81         BRW_R_DISK_IOSIZE,
82         BRW_W_DISK_IOSIZE,
83         BRW_R_DIO_FRAGS,
84         BRW_W_DIO_FRAGS,
85         BRW_LAST,
86 };
87
88 struct brw_stats {
89         struct obd_histogram hist[BRW_LAST];
90 };
91
92 enum {
93         RENAME_SAMEDIR_SIZE = 0,
94         RENAME_CROSSDIR_SRC_SIZE,
95         RENAME_CROSSDIR_TGT_SIZE,
96         RENAME_LAST,
97 };
98
99 struct rename_stats {
100         struct obd_histogram hist[RENAME_LAST];
101 };
102
103 /* An lprocfs counter can be configured using the enum bit masks below.
104  *
105  * LPROCFS_CNTR_EXTERNALLOCK indicates that an external lock already
106  * protects this counter from concurrent updates. If not specified,
107  * lprocfs an internal per-counter lock variable. External locks are
108  * not used to protect counter increments, but are used to protect
109  * counter readout and resets.
110  *
111  * LPROCFS_CNTR_AVGMINMAX indicates a multi-valued counter samples,
112  * (i.e. counter can be incremented by more than "1"). When specified,
113  * the counter maintains min, max and sum in addition to a simple
114  * invocation count. This allows averages to be be computed.
115  * If not specified, the counter is an increment-by-1 counter.
116  * min, max, sum, etc. are not maintained.
117  *
118  * LPROCFS_CNTR_STDDEV indicates that the counter should track sum of
119  * squares (for multi-valued counter samples only). This allows
120  * external computation of standard deviation, but involves a 64-bit
121  * multiply per counter increment.
122  */
123
124 enum {
125         LPROCFS_CNTR_EXTERNALLOCK = 0x0001,
126         LPROCFS_CNTR_AVGMINMAX    = 0x0002,
127         LPROCFS_CNTR_STDDEV       = 0x0004,
128
129         /* counter data type */
130         LPROCFS_TYPE_REGS         = 0x0100,
131         LPROCFS_TYPE_BYTES        = 0x0200,
132         LPROCFS_TYPE_PAGES        = 0x0400,
133         LPROCFS_TYPE_CYCLE        = 0x0800,
134 };
135
136 #define LC_MIN_INIT ((~(__u64)0) >> 1)
137
138 struct lprocfs_counter_header {
139         unsigned int            lc_config;
140         const char              *lc_name;   /* must be static */
141         const char              *lc_units;  /* must be static */
142 };
143
144 struct lprocfs_counter {
145         __s64   lc_count;
146         __s64   lc_min;
147         __s64   lc_max;
148         __s64   lc_sumsquare;
149         /*
150          * Every counter has lc_array_sum[0], while lc_array_sum[1] is only
151          * for irq context counter, i.e. stats with
152          * LPROCFS_STATS_FLAG_IRQ_SAFE flag, its counter need
153          * lc_array_sum[1]
154          */
155         __s64   lc_array_sum[1];
156 };
157 #define lc_sum          lc_array_sum[0]
158 #define lc_sum_irq      lc_array_sum[1]
159
160 struct lprocfs_percpu {
161         struct lprocfs_counter lp_cntr[0];
162 };
163
164 enum lprocfs_stats_lock_ops {
165         LPROCFS_GET_NUM_CPU     = 0x0001, /* number allocated per-CPU stats */
166         LPROCFS_GET_SMP_ID      = 0x0002, /* current stat to be updated */
167 };
168
169 enum lprocfs_stats_flags {
170         LPROCFS_STATS_FLAG_NONE     = 0x0000, /* per cpu counter */
171         LPROCFS_STATS_FLAG_NOPERCPU = 0x0001, /* stats have no percpu
172                                                * area and need locking */
173         LPROCFS_STATS_FLAG_IRQ_SAFE = 0x0002, /* alloc need irq safe */
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         /* # of counters */
188         unsigned short                  ls_num;
189         /* 1 + the biggest cpu # whose ls_percpu slot has been allocated */
190         unsigned short                  ls_biggest_alloc_num;
191         enum lprocfs_stats_flags        ls_flags;
192         /* Lock used when there are no percpu stats areas; For percpu stats,
193          * it is used to protect ls_biggest_alloc_num change */
194         spinlock_t                      ls_lock;
195
196         /* has ls_num of counter headers */
197         struct lprocfs_counter_header   *ls_cnt_header;
198         struct lprocfs_percpu           *ls_percpu[0];
199 };
200
201 #define OPC_RANGE(seg) (seg ## _LAST_OPC - seg ## _FIRST_OPC)
202
203 /* Pack all opcodes down into a single monotonically increasing index */
204 static inline int opcode_offset(__u32 opc) {
205         if (opc < OST_LAST_OPC) {
206                  /* OST opcode */
207                 return (opc - OST_FIRST_OPC);
208         } else if (opc < MDS_LAST_OPC) {
209                 /* MDS opcode */
210                 return (opc - MDS_FIRST_OPC +
211                         OPC_RANGE(OST));
212         } else if (opc < LDLM_LAST_OPC) {
213                 /* LDLM Opcode */
214                 return (opc - LDLM_FIRST_OPC +
215                         OPC_RANGE(MDS) +
216                         OPC_RANGE(OST));
217         } else if (opc < MGS_LAST_OPC) {
218                 /* MGS Opcode */
219                 return (opc - MGS_FIRST_OPC +
220                         OPC_RANGE(LDLM) +
221                         OPC_RANGE(MDS) +
222                         OPC_RANGE(OST));
223         } else if (opc < OBD_LAST_OPC) {
224                 /* OBD Ping */
225                 return (opc - OBD_FIRST_OPC +
226                         OPC_RANGE(MGS) +
227                         OPC_RANGE(LDLM) +
228                         OPC_RANGE(MDS) +
229                         OPC_RANGE(OST));
230         } else if (opc < LLOG_LAST_OPC) {
231                 /* LLOG Opcode */
232                 return (opc - LLOG_FIRST_OPC +
233                         OPC_RANGE(OBD) +
234                         OPC_RANGE(MGS) +
235                         OPC_RANGE(LDLM) +
236                         OPC_RANGE(MDS) +
237                         OPC_RANGE(OST));
238         } else if (opc < QUOTA_LAST_OPC) {
239                 /* LQUOTA Opcode */
240                 return (opc - QUOTA_FIRST_OPC +
241                         OPC_RANGE(LLOG) +
242                         OPC_RANGE(OBD) +
243                         OPC_RANGE(MGS) +
244                         OPC_RANGE(LDLM) +
245                         OPC_RANGE(MDS) +
246                         OPC_RANGE(OST));
247         } else if (opc < SEQ_LAST_OPC) {
248                 /* SEQ opcode */
249                 return (opc - SEQ_FIRST_OPC +
250                         OPC_RANGE(QUOTA) +
251                         OPC_RANGE(LLOG) +
252                         OPC_RANGE(OBD) +
253                         OPC_RANGE(MGS) +
254                         OPC_RANGE(LDLM) +
255                         OPC_RANGE(MDS) +
256                         OPC_RANGE(OST));
257         } else if (opc < SEC_LAST_OPC) {
258                 /* SEC opcode */
259                 return (opc - SEC_FIRST_OPC +
260                         OPC_RANGE(SEQ) +
261                         OPC_RANGE(QUOTA) +
262                         OPC_RANGE(LLOG) +
263                         OPC_RANGE(OBD) +
264                         OPC_RANGE(MGS) +
265                         OPC_RANGE(LDLM) +
266                         OPC_RANGE(MDS) +
267                         OPC_RANGE(OST));
268         } else if (opc < FLD_LAST_OPC) {
269                 /* FLD opcode */
270                  return (opc - FLD_FIRST_OPC +
271                         OPC_RANGE(SEC) +
272                         OPC_RANGE(SEQ) +
273                         OPC_RANGE(QUOTA) +
274                         OPC_RANGE(LLOG) +
275                         OPC_RANGE(OBD) +
276                         OPC_RANGE(MGS) +
277                         OPC_RANGE(LDLM) +
278                         OPC_RANGE(MDS) +
279                         OPC_RANGE(OST));
280         } else if (opc < OUT_UPDATE_LAST_OPC) {
281                 /* update opcode */
282                 return (opc - OUT_UPDATE_FIRST_OPC +
283                         OPC_RANGE(FLD) +
284                         OPC_RANGE(SEC) +
285                         OPC_RANGE(SEQ) +
286                         OPC_RANGE(QUOTA) +
287                         OPC_RANGE(LLOG) +
288                         OPC_RANGE(OBD) +
289                         OPC_RANGE(MGS) +
290                         OPC_RANGE(LDLM) +
291                         OPC_RANGE(MDS) +
292                         OPC_RANGE(OST));
293         } else if (opc < LFSCK_LAST_OPC) {
294                 /* LFSCK opcode */
295                 return (opc - LFSCK_FIRST_OPC +
296                         OPC_RANGE(OUT_UPDATE) +
297                         OPC_RANGE(FLD) +
298                         OPC_RANGE(SEC) +
299                         OPC_RANGE(SEQ) +
300                         OPC_RANGE(QUOTA) +
301                         OPC_RANGE(LLOG) +
302                         OPC_RANGE(OBD) +
303                         OPC_RANGE(MGS) +
304                         OPC_RANGE(LDLM) +
305                         OPC_RANGE(MDS) +
306                         OPC_RANGE(OST));
307         } else {
308                 /* Unknown Opcode */
309                 return -1;
310         }
311 }
312
313
314 #define LUSTRE_MAX_OPCODES (OPC_RANGE(OST)  + \
315                             OPC_RANGE(MDS)  + \
316                             OPC_RANGE(LDLM) + \
317                             OPC_RANGE(MGS)  + \
318                             OPC_RANGE(OBD)  + \
319                             OPC_RANGE(LLOG) + \
320                             OPC_RANGE(SEC)  + \
321                             OPC_RANGE(SEQ)  + \
322                             OPC_RANGE(SEC)  + \
323                             OPC_RANGE(FLD)  + \
324                             OPC_RANGE(OUT_UPDATE) + \
325                             OPC_RANGE(LFSCK))
326
327 #define EXTRA_MAX_OPCODES ((PTLRPC_LAST_CNTR - PTLRPC_FIRST_CNTR)  + \
328                             OPC_RANGE(EXTRA))
329
330 enum {
331         PTLRPC_REQWAIT_CNTR = 0,
332         PTLRPC_REQQDEPTH_CNTR,
333         PTLRPC_REQACTIVE_CNTR,
334         PTLRPC_TIMEOUT,
335         PTLRPC_REQBUF_AVAIL_CNTR,
336         PTLRPC_LAST_CNTR
337 };
338
339 #define PTLRPC_FIRST_CNTR PTLRPC_REQWAIT_CNTR
340
341 enum lprocfs_extra_opc {
342         LDLM_GLIMPSE_ENQUEUE = 0,
343         LDLM_PLAIN_ENQUEUE,
344         LDLM_EXTENT_ENQUEUE,
345         LDLM_FLOCK_ENQUEUE,
346         LDLM_IBITS_ENQUEUE,
347         MDS_REINT_SETATTR,
348         MDS_REINT_CREATE,
349         MDS_REINT_LINK,
350         MDS_REINT_UNLINK,
351         MDS_REINT_RENAME,
352         MDS_REINT_OPEN,
353         MDS_REINT_SETXATTR,
354         BRW_READ_BYTES,
355         BRW_WRITE_BYTES,
356         EXTRA_LAST_OPC
357 };
358
359 #define EXTRA_FIRST_OPC LDLM_GLIMPSE_ENQUEUE
360 /* class_obd.c */
361 extern struct proc_dir_entry *proc_lustre_root;
362
363 struct obd_device;
364 struct obd_histogram;
365
366 /* Days / hours / mins / seconds format */
367 struct dhms {
368         int d,h,m,s;
369 };
370 static inline void s2dhms(struct dhms *ts, time_t secs)
371 {
372         ts->d = secs / 86400;
373         secs = secs % 86400;
374         ts->h = secs / 3600;
375         secs = secs % 3600;
376         ts->m = secs / 60;
377         ts->s = secs % 60;
378 }
379 #define DHMS_FMT "%dd%dh%02dm%02ds"
380 #define DHMS_VARS(x) (x)->d, (x)->h, (x)->m, (x)->s
381
382 #define JOBSTATS_JOBID_VAR_MAX_LEN      20
383 #define JOBSTATS_DISABLE                "disable"
384 #define JOBSTATS_PROCNAME_UID           "procname_uid"
385 #define JOBSTATS_NODELOCAL              "nodelocal"
386
387 typedef void (*cntr_init_callback)(struct lprocfs_stats *stats);
388
389 struct obd_job_stats {
390         struct cfs_hash        *ojs_hash;       /* hash of jobids */
391         struct list_head        ojs_list;       /* list of job_stat structs */
392         rwlock_t                ojs_lock;       /* protect ojs_list/js_list */
393         unsigned int            ojs_cleanup_interval;/* seconds before expiry */
394         time_t                  ojs_last_cleanup; /* previous cleanup time */
395         cntr_init_callback      ojs_cntr_init_fn;/* lprocfs_stats initializer */
396         unsigned short          ojs_cntr_num;   /* number of stats in struct */
397         bool                    ojs_cleaning;   /* currently expiring stats */
398 };
399
400 #ifdef CONFIG_PROC_FS
401
402 extern int lprocfs_stats_alloc_one(struct lprocfs_stats *stats,
403                                    unsigned int cpuid);
404
405 /**
406  * Lock statistics structure for access, possibly only on this CPU.
407  *
408  * The statistics struct may be allocated with per-CPU structures for
409  * efficient concurrent update (usually only on server-wide stats), or
410  * as a single global struct (e.g. for per-client or per-job statistics),
411  * so the required locking depends on the type of structure allocated.
412  *
413  * For per-CPU statistics, pin the thread to the current cpuid so that
414  * will only access the statistics for that CPU.  If the stats structure
415  * for the current CPU has not been allocated (or previously freed),
416  * allocate it now.  The per-CPU statistics do not need locking since
417  * the thread is pinned to the CPU during update.
418  *
419  * For global statistics, lock the stats structure to prevent concurrent update.
420  *
421  * \param[in] stats     statistics structure to lock
422  * \param[in] opc       type of operation:
423  *                      LPROCFS_GET_SMP_ID: "lock" and return current CPU index
424  *                              for incrementing statistics for that CPU
425  *                      LPROCFS_GET_NUM_CPU: "lock" and return number of used
426  *                              CPU indices to iterate over all indices
427  * \param[out] flags    CPU interrupt saved state for IRQ-safe locking
428  *
429  * \retval cpuid of current thread or number of allocated structs
430  * \retval negative on error (only for opc LPROCFS_GET_SMP_ID + per-CPU stats)
431  */
432 static inline int lprocfs_stats_lock(struct lprocfs_stats *stats,
433                                      enum lprocfs_stats_lock_ops opc,
434                                      unsigned long *flags)
435 {
436         if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
437                 if (stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE)
438                         spin_lock_irqsave(&stats->ls_lock, *flags);
439                 else
440                         spin_lock(&stats->ls_lock);
441                 return opc == LPROCFS_GET_NUM_CPU ? 1 : 0;
442         }
443
444         switch (opc) {
445         case LPROCFS_GET_SMP_ID: {
446                 unsigned int cpuid = get_cpu();
447
448                 if (unlikely(stats->ls_percpu[cpuid] == NULL)) {
449                         int rc = lprocfs_stats_alloc_one(stats, cpuid);
450                         if (rc < 0) {
451                                 put_cpu();
452                                 return rc;
453                         }
454                 }
455                 return cpuid;
456         }
457         case LPROCFS_GET_NUM_CPU:
458                 return stats->ls_biggest_alloc_num;
459         default:
460                 LBUG();
461         }
462 }
463
464 /**
465  * Unlock statistics structure after access.
466  *
467  * Unlock the lock acquired via lprocfs_stats_lock() for global statistics,
468  * or unpin this thread from the current cpuid for per-CPU statistics.
469  *
470  * This function must be called using the same arguments as used when calling
471  * lprocfs_stats_lock() so that the correct operation can be performed.
472  *
473  * \param[in] stats     statistics structure to unlock
474  * \param[in] opc       type of operation (current cpuid or number of structs)
475  * \param[in] flags     CPU interrupt saved state for IRQ-safe locking
476  */
477 static inline void lprocfs_stats_unlock(struct lprocfs_stats *stats,
478                                         enum lprocfs_stats_lock_ops opc,
479                                         unsigned long *flags)
480 {
481         if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
482                 if (stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE)
483                         spin_unlock_irqrestore(&stats->ls_lock, *flags);
484                 else
485                         spin_unlock(&stats->ls_lock);
486         } else if (opc == LPROCFS_GET_SMP_ID) {
487                 put_cpu();
488         }
489 }
490
491 static inline unsigned int
492 lprocfs_stats_counter_size(struct lprocfs_stats *stats)
493 {
494         unsigned int percpusize;
495
496         percpusize = offsetof(struct lprocfs_percpu, lp_cntr[stats->ls_num]);
497
498         /* irq safe stats need lc_array_sum[1] */
499         if ((stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE) != 0)
500                 percpusize += stats->ls_num * sizeof(__s64);
501
502         if ((stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) == 0)
503                 percpusize = L1_CACHE_ALIGN(percpusize);
504
505         return percpusize;
506 }
507
508 static inline struct lprocfs_counter *
509 lprocfs_stats_counter_get(struct lprocfs_stats *stats, unsigned int cpuid,
510                           int index)
511 {
512         struct lprocfs_counter *cntr;
513
514         cntr = &stats->ls_percpu[cpuid]->lp_cntr[index];
515
516         if ((stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE) != 0)
517                 cntr = (void *)cntr + index * sizeof(__s64);
518
519         return cntr;
520 }
521
522 /* Two optimized LPROCFS counter increment functions are provided:
523  *     lprocfs_counter_incr(cntr, value) - optimized for by-one counters
524  *     lprocfs_counter_add(cntr) - use for multi-valued counters
525  * Counter data layout allows config flag, counter lock and the
526  * count itself to reside within a single cache line.
527  */
528
529 extern void lprocfs_counter_add(struct lprocfs_stats *stats, int idx,
530                                 long amount);
531 extern void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx,
532                                 long amount);
533
534 #define lprocfs_counter_incr(stats, idx) \
535         lprocfs_counter_add(stats, idx, 1)
536 #define lprocfs_counter_decr(stats, idx) \
537         lprocfs_counter_sub(stats, idx, 1)
538
539 extern __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
540                                  struct lprocfs_counter_header *header,
541                                  enum lprocfs_stats_flags flags,
542                                  enum lprocfs_fields_flags field);
543 static inline __u64 lprocfs_stats_collector(struct lprocfs_stats *stats,
544                                             int idx,
545                                             enum lprocfs_fields_flags field)
546 {
547         unsigned int  i;
548         unsigned int  num_cpu;
549         unsigned long flags     = 0;
550         __u64         ret       = 0;
551
552         LASSERT(stats != NULL);
553
554         num_cpu = lprocfs_stats_lock(stats, LPROCFS_GET_NUM_CPU, &flags);
555         for (i = 0; i < num_cpu; i++) {
556                 if (stats->ls_percpu[i] == NULL)
557                         continue;
558                 ret += lprocfs_read_helper(
559                                 lprocfs_stats_counter_get(stats, i, idx),
560                                 &stats->ls_cnt_header[idx], stats->ls_flags,
561                                 field);
562         }
563         lprocfs_stats_unlock(stats, LPROCFS_GET_NUM_CPU, &flags);
564         return ret;
565 }
566
567 extern struct lprocfs_stats *
568 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags);
569 extern void lprocfs_clear_stats(struct lprocfs_stats *stats);
570 extern void lprocfs_free_stats(struct lprocfs_stats **stats);
571 extern void lprocfs_init_ops_stats(int num_private_stats,
572                                    struct lprocfs_stats *stats);
573 extern void lprocfs_init_mps_stats(int num_private_stats,
574                                    struct lprocfs_stats *stats);
575 extern void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats);
576 extern int lprocfs_alloc_obd_stats(struct obd_device *obddev,
577                                    unsigned int num_private_stats);
578 extern int lprocfs_alloc_md_stats(struct obd_device *obddev,
579                                   unsigned int num_private_stats);
580 extern void lprocfs_counter_init(struct lprocfs_stats *stats, int index,
581                                  unsigned conf, const char *name,
582                                  const char *units);
583 extern void lprocfs_free_obd_stats(struct obd_device *obddev);
584 extern void lprocfs_free_md_stats(struct obd_device *obddev);
585 struct obd_export;
586 struct nid_stat;
587 extern int lprocfs_add_clear_entry(struct obd_device * obd,
588                                    struct proc_dir_entry *entry);
589 #ifdef HAVE_SERVER_SUPPORT
590 extern int lprocfs_exp_setup(struct obd_export *exp, lnet_nid_t *peer_nid);
591 extern int lprocfs_exp_cleanup(struct obd_export *exp);
592 #else
593 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
594 { return 0; }
595 #endif
596 extern struct proc_dir_entry *
597 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
598                    void *data, const struct file_operations *fops);
599 extern struct proc_dir_entry *
600 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
601                     const char *format, ...);
602 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
603 #ifdef HAVE_SERVER_SUPPORT
604 extern ssize_t
605 lprocfs_nid_stats_clear_seq_write(struct file *file, const char __user *buffer,
606                                         size_t count, loff_t *off);
607 extern int lprocfs_nid_stats_clear_seq_show(struct seq_file *file, void *data);
608 #endif
609 extern int lprocfs_register_stats(struct proc_dir_entry *root, const char *name,
610                                   struct lprocfs_stats *stats);
611
612 /* lprocfs_status.c */
613 extern int lprocfs_add_vars(struct proc_dir_entry *root,
614                             struct lprocfs_vars *var, void *data);
615 extern struct proc_dir_entry *
616 lprocfs_register(const char *name, struct proc_dir_entry *parent,
617                  struct lprocfs_vars *list, void *data);
618 extern void lprocfs_remove(struct proc_dir_entry **root);
619 extern void lprocfs_remove_proc_entry(const char *name,
620                                       struct proc_dir_entry *parent);
621 #ifndef HAVE_REMOVE_PROC_SUBTREE
622 extern int remove_proc_subtree(const char *name,
623                                struct proc_dir_entry *parent);
624 #define PDE_DATA(inode)         (PDE(inode)->data)
625
626 static inline int LPROCFS_ENTRY_CHECK(struct inode *inode)
627 {
628         struct proc_dir_entry *dp = PDE(inode);
629         int deleted = 0;
630
631         spin_lock(&(dp)->pde_unload_lock);
632         if (dp->proc_fops == NULL)
633                 deleted = 1;
634         spin_unlock(&(dp)->pde_unload_lock);
635         if (deleted)
636                 return -ENODEV;
637         return 0;
638 }
639 #else
640 static inline int LPROCFS_ENTRY_CHECK(struct inode *inode)
641 { return 0; }
642 #endif
643 extern int lprocfs_obd_setup(struct obd_device *dev);
644 extern int lprocfs_obd_cleanup(struct obd_device *obd);
645 #ifdef HAVE_SERVER_SUPPORT
646 extern const struct file_operations lprocfs_evict_client_fops;
647 #endif
648 extern int lprocfs_seq_create(struct proc_dir_entry *parent, const char *name,
649                               mode_t mode,
650                               const struct file_operations *seq_fops,
651                               void *data);
652 extern int lprocfs_obd_seq_create(struct obd_device *dev, const char *name,
653                                   mode_t mode,
654                                   const struct file_operations *seq_fops,
655                                   void *data);
656
657 /* Generic callbacks */
658 extern int lprocfs_u64_seq_show(struct seq_file *m, void *data);
659 extern int lprocfs_atomic_seq_show(struct seq_file *m, void *data);
660 extern ssize_t lprocfs_atomic_seq_write(struct file *file,
661                                         const char __user *buffer,
662                                         size_t count, loff_t *off);
663 extern int lprocfs_uint_seq_show(struct seq_file *m, void *data);
664 extern ssize_t lprocfs_uint_seq_write(struct file *file,
665                                       const char __user *buffer,
666                                       size_t count, loff_t *off);
667 extern int lprocfs_wr_uint(struct file *file, const char __user *buffer,
668                            unsigned long count, void *data);
669 extern int lprocfs_uuid_seq_show(struct seq_file *m, void *data);
670 extern int lprocfs_name_seq_show(struct seq_file *m, void *data);
671 extern int lprocfs_server_uuid_seq_show(struct seq_file *m, void *data);
672 extern int lprocfs_conn_uuid_seq_show(struct seq_file *m, void *data);
673 extern int lprocfs_import_seq_show(struct seq_file *m, void *data);
674 extern int lprocfs_state_seq_show(struct seq_file *m, void *data);
675 extern int lprocfs_connect_flags_seq_show(struct seq_file *m, void *data);
676 #ifdef HAVE_SERVER_SUPPORT
677 extern int lprocfs_num_exports_seq_show(struct seq_file *m, void *data);
678 #endif
679 struct adaptive_timeout;
680 extern int lprocfs_at_hist_helper(struct seq_file *m,
681                                   struct adaptive_timeout *at);
682 extern int lprocfs_timeouts_seq_show(struct seq_file *m, void *data);
683 extern ssize_t
684 lprocfs_timeouts_seq_write(struct file *file, const char __user *buffer,
685                            size_t count, loff_t *off);
686 #ifdef HAVE_SERVER_SUPPORT
687 extern ssize_t
688 lprocfs_evict_client_seq_write(struct file *file, const char __user *buffer,
689                                 size_t count, loff_t *off);
690 #endif
691 extern ssize_t
692 lprocfs_ping_seq_write(struct file *file, const char __user *buffer,
693                        size_t count, loff_t *off);
694 extern ssize_t
695 lprocfs_import_seq_write(struct file *file, const char __user *buffer,
696                          size_t count, loff_t *off);
697 extern int lprocfs_pinger_recov_seq_show(struct seq_file *m, void *data);
698 extern ssize_t
699 lprocfs_pinger_recov_seq_write(struct file *file, const char __user *buffer,
700                                size_t count, loff_t *off);
701
702 /* Statfs helpers */
703 extern int lprocfs_blksize_seq_show(struct seq_file *m, void *data);
704 extern int lprocfs_kbytestotal_seq_show(struct seq_file *m, void *data);
705 extern int lprocfs_kbytesfree_seq_show(struct seq_file *m, void *data);
706 extern int lprocfs_kbytesavail_seq_show(struct seq_file *m, void *data);
707 extern int lprocfs_filestotal_seq_show(struct seq_file *m, void *data);
708 extern int lprocfs_filesfree_seq_show(struct seq_file *m, void *data);
709
710 extern int lprocfs_write_helper(const char __user *buffer, unsigned long count,
711                                 int *val);
712 extern int lprocfs_write_frac_helper(const char __user *buffer,
713                                      unsigned long count,
714                                      int *val, int mult);
715 extern int lprocfs_seq_read_frac_helper(struct seq_file *m, long val, int mult);
716 extern int lprocfs_read_frac_helper(char *buffer, unsigned long count,
717                                     long val, int mult);
718 extern int lprocfs_write_u64_helper(const char __user *buffer,
719                                     unsigned long count, __u64 *val);
720 extern int lprocfs_write_frac_u64_helper(const char __user *buffer,
721                                          unsigned long count,
722                                          __u64 *val, int mult);
723 char *lprocfs_find_named_value(const char *buffer, const char *name,
724                                 size_t *count);
725 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value);
726 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value);
727 void lprocfs_oh_clear(struct obd_histogram *oh);
728 unsigned long lprocfs_oh_sum(struct obd_histogram *oh);
729
730 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
731                            struct lprocfs_counter *cnt);
732
733 #ifdef HAVE_SERVER_SUPPORT
734 /* lprocfs_status.c: recovery status */
735 int lprocfs_recovery_status_seq_show(struct seq_file *m, void *data);
736
737 /* lprocfs_status.c: hash statistics */
738 int lprocfs_hash_seq_show(struct seq_file *m, void *data);
739
740 /* lprocfs_status.c: IR factor */
741 int lprocfs_ir_factor_seq_show(struct seq_file *m, void *data);
742 ssize_t
743 lprocfs_ir_factor_seq_write(struct file *file, const char __user *buffer,
744                                 size_t count, loff_t *off);
745 #endif
746 extern int lprocfs_single_release(struct inode *, struct file *);
747 extern int lprocfs_seq_release(struct inode *, struct file *);
748
749 /* You must use these macros when you want to refer to
750  * the import in a client obd_device for a lprocfs entry */
751 #define LPROCFS_CLIMP_CHECK(obd) do {           \
752         typecheck(struct obd_device *, obd);    \
753         down_read(&(obd)->u.cli.cl_sem);    \
754         if ((obd)->u.cli.cl_import == NULL) {   \
755              up_read(&(obd)->u.cli.cl_sem); \
756              return -ENODEV;                    \
757         }                                       \
758 } while(0)
759 #define LPROCFS_CLIMP_EXIT(obd)                 \
760         up_read(&(obd)->u.cli.cl_sem);
761
762 /* write the name##_seq_show function, call LPROC_SEQ_FOPS_RO for read-only
763   proc entries; otherwise, you will define name##_seq_write function also for
764   a read-write proc entry, and then call LPROC_SEQ_SEQ instead. Finally,
765   call lprocfs_obd_seq_create(obd, filename, 0444, &name#_fops, data); */
766 #define __LPROC_SEQ_FOPS(name, custom_seq_write)                        \
767 static int name##_single_open(struct inode *inode, struct file *file)   \
768 {                                                                       \
769         int rc;                                                         \
770                                                                         \
771         rc = LPROCFS_ENTRY_CHECK(inode);                                \
772         if (rc < 0)                                                     \
773                 return rc;                                              \
774                                                                         \
775         return single_open(file, name##_seq_show, PDE_DATA(inode));     \
776 }                                                                       \
777 static const struct file_operations name##_fops = {                     \
778         .owner   = THIS_MODULE,                                         \
779         .open    = name##_single_open,                                  \
780         .read    = seq_read,                                            \
781         .write   = custom_seq_write,                                    \
782         .llseek  = seq_lseek,                                           \
783         .release = lprocfs_single_release,                              \
784 }
785
786 #define LPROC_SEQ_FOPS_RO(name)         __LPROC_SEQ_FOPS(name, NULL)
787 #define LPROC_SEQ_FOPS(name)            __LPROC_SEQ_FOPS(name, name##_seq_write)
788
789 #define LPROC_SEQ_FOPS_RO_TYPE(name, type)                              \
790         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
791         {                                                               \
792                 return lprocfs_##type##_seq_show(m, m->private);        \
793         }                                                               \
794         LPROC_SEQ_FOPS_RO(name##_##type)
795
796 #define LPROC_SEQ_FOPS_RW_TYPE(name, type)                              \
797         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
798         {                                                               \
799                 return lprocfs_##type##_seq_show(m, m->private);        \
800         }                                                               \
801         static ssize_t name##_##type##_seq_write(struct file *file,     \
802                         const char __user *buffer, size_t count,        \
803                         loff_t *off)                                    \
804         {                                                               \
805                 struct seq_file *seq = file->private_data;              \
806                 return lprocfs_##type##_seq_write(file, buffer,         \
807                                                 count, seq->private);   \
808         }                                                               \
809         LPROC_SEQ_FOPS(name##_##type);
810
811 #define LPROC_SEQ_FOPS_WO_TYPE(name, type)                              \
812         static ssize_t name##_##type##_write(struct file *file,         \
813                         const char __user *buffer, size_t count,        \
814                         loff_t *off)                                    \
815         {                                                               \
816                 return lprocfs_##type##_seq_write(file, buffer, count, off);\
817         }                                                               \
818         static int name##_##type##_open(struct inode *inode, struct file *file)\
819         {                                                               \
820                 return single_open(file, NULL, PDE_DATA(inode));        \
821         }                                                               \
822         static const struct file_operations name##_##type##_fops = {    \
823                 .open    = name##_##type##_open,                        \
824                 .write   = name##_##type##_write,                       \
825                 .release = lprocfs_single_release,                      \
826         };
827
828 /* lproc_ptlrpc.c */
829 struct ptlrpc_request;
830 extern void target_print_req(void *seq_file, struct ptlrpc_request *req);
831
832 #ifdef HAVE_SERVER_SUPPORT
833 /* lprocfs_jobstats.c */
834 int lprocfs_job_stats_log(struct obd_device *obd, char *jobid,
835                           int event, long amount);
836 void lprocfs_job_stats_fini(struct obd_device *obd);
837 int lprocfs_job_stats_init(struct obd_device *obd, int cntr_num,
838                            cntr_init_callback fn);
839 int lprocfs_job_interval_seq_show(struct seq_file *m, void *data);
840 ssize_t
841 lprocfs_job_interval_seq_write(struct file *file, const char __user *buffer,
842                                 size_t count, loff_t *off);
843 /* lproc_status.c */
844 int lprocfs_recovery_time_soft_seq_show(struct seq_file *m, void *data);
845 ssize_t lprocfs_recovery_time_soft_seq_write(struct file *file,
846                                                 const char __user *buffer,
847                                                 size_t count, loff_t *off);
848 int lprocfs_recovery_time_hard_seq_show(struct seq_file *m, void *data);
849 ssize_t
850 lprocfs_recovery_time_hard_seq_write(struct file *file,
851                                      const char __user *buffer,
852                                      size_t count, loff_t *off);
853 int lprocfs_target_instance_seq_show(struct seq_file *m, void *data);
854 #endif
855 int lprocfs_obd_max_pages_per_rpc_seq_show(struct seq_file *m, void *data);
856 ssize_t
857 lprocfs_obd_max_pages_per_rpc_seq_write(struct file *file,
858                                         const char __user *buffer,
859                                         size_t count, loff_t *off);
860
861 struct root_squash_info;
862 int lprocfs_wr_root_squash(const char __user *buffer, unsigned long count,
863                            struct root_squash_info *squash, char *name);
864 int lprocfs_wr_nosquash_nids(const char __user *buffer, unsigned long count,
865                              struct root_squash_info *squash, char *name);
866
867 /* all quota proc functions */
868 extern int lprocfs_quota_rd_bunit(char *page, char **start,
869                                   off_t off, int count,
870                                   int *eof, void *data);
871 extern int lprocfs_quota_wr_bunit(struct file *file, const char *buffer,
872                                   unsigned long count, void *data);
873 extern int lprocfs_quota_rd_btune(char *page, char **start,
874                                   off_t off, int count,
875                                   int *eof, void *data);
876 extern int lprocfs_quota_wr_btune(struct file *file, const char *buffer,
877                                   unsigned long count, void *data);
878 extern int lprocfs_quota_rd_iunit(char *page, char **start,
879                                   off_t off, int count,
880                                   int *eof, void *data);
881 extern int lprocfs_quota_wr_iunit(struct file *file, const char *buffer,
882                                   unsigned long count, void *data);
883 extern int lprocfs_quota_rd_itune(char *page, char **start,
884                                   off_t off, int count,
885                                   int *eof, void *data);
886 extern int lprocfs_quota_wr_itune(struct file *file, const char *buffer,
887                                   unsigned long count, void *data);
888 extern int lprocfs_quota_rd_type(char *page, char **start, off_t off, int count,
889                                  int *eof, void *data);
890 extern int lprocfs_quota_wr_type(struct file *file, const char *buffer,
891                                  unsigned long count, void *data);
892 extern int lprocfs_quota_rd_switch_seconds(char *page, char **start, off_t off,
893                                            int count, int *eof, void *data);
894 extern int lprocfs_quota_wr_switch_seconds(struct file *file,
895                                            const char *buffer,
896                                            unsigned long count, void *data);
897 extern int lprocfs_quota_rd_sync_blk(char *page, char **start, off_t off,
898                                      int count, int *eof, void *data);
899 extern int lprocfs_quota_wr_sync_blk(struct file *file, const char *buffer,
900                                      unsigned long count, void *data);
901 extern int lprocfs_quota_rd_switch_qs(char *page, char **start, off_t off,
902                                       int count, int *eof, void *data);
903 extern int lprocfs_quota_wr_switch_qs(struct file *file,
904                                       const char *buffer,
905                                       unsigned long count, void *data);
906 extern int lprocfs_quota_rd_boundary_factor(char *page, char **start, off_t off,
907                                             int count, int *eof, void *data);
908 extern int lprocfs_quota_wr_boundary_factor(struct file *file,
909                                             const char *buffer,
910                                             unsigned long count, void *data);
911 extern int lprocfs_quota_rd_least_bunit(char *page, char **start, off_t off,
912                                         int count, int *eof, void *data);
913 extern int lprocfs_quota_wr_least_bunit(struct file *file,
914                                         const char *buffer,
915                                         unsigned long count, void *data);
916 extern int lprocfs_quota_rd_least_iunit(char *page, char **start, off_t off,
917                                         int count, int *eof, void *data);
918 extern int lprocfs_quota_wr_least_iunit(struct file *file,
919                                         const char *buffer,
920                                         unsigned long count, void *data);
921 extern int lprocfs_quota_rd_qs_factor(char *page, char **start, off_t off,
922                                       int count, int *eof, void *data);
923 extern int lprocfs_quota_wr_qs_factor(struct file *file,
924                                       const char *buffer,
925                                       unsigned long count, void *data);
926 #else /* !CONFIG_PROC_FS */
927
928 #define proc_lustre_root NULL
929
930 static inline void lprocfs_counter_add(struct lprocfs_stats *stats,
931                                        int index, long amount)
932 { return; }
933 static inline void lprocfs_counter_incr(struct lprocfs_stats *stats,
934                                         int index)
935 { return; }
936 static inline void lprocfs_counter_sub(struct lprocfs_stats *stats,
937                                        int index, long amount)
938 { return; }
939 static inline void lprocfs_counter_decr(struct lprocfs_stats *stats,
940                                         int index)
941 { return; }
942 static inline void lprocfs_counter_init(struct lprocfs_stats *stats,
943                                         int index, unsigned conf,
944                                         const char *name, const char *units)
945 { return; }
946
947 static inline __u64 lc_read_helper(struct lprocfs_counter *lc,
948                                    enum lprocfs_fields_flags field)
949 { return 0; }
950
951 /* NB: we return !NULL to satisfy error checker */
952 static inline struct lprocfs_stats *
953 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags)
954 { return (struct lprocfs_stats *)1; }
955 static inline void lprocfs_clear_stats(struct lprocfs_stats *stats)
956 { return; }
957 static inline void lprocfs_free_stats(struct lprocfs_stats **stats)
958 { return; }
959 static inline int lprocfs_register_stats(struct proc_dir_entry *root,
960                                          const char *name,
961                                          struct lprocfs_stats *stats)
962 { return 0; }
963 static inline void lprocfs_init_ops_stats(int num_private_stats,
964                                           struct lprocfs_stats *stats)
965 { return; }
966 static inline void lprocfs_init_mps_stats(int num_private_stats,
967                                           struct lprocfs_stats *stats)
968 { return; }
969 static inline void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats)
970 { return; }
971 static inline int lprocfs_alloc_obd_stats(struct obd_device *obddev,
972                                           unsigned int num_private_stats)
973 { return 0; }
974 static inline int lprocfs_alloc_md_stats(struct obd_device *obddev,
975                                          unsigned int num_private_stats)
976 { return 0; }
977 static inline void lprocfs_free_obd_stats(struct obd_device *obddev)
978 { return; }
979 static inline void lprocfs_free_md_stats(struct obd_device *obddev)
980 { return; }
981
982 struct obd_export;
983 static inline int lprocfs_add_clear_entry(struct obd_export *exp)
984 { return 0; }
985 static inline void lprocfs_free_per_client_stats(struct obd_device *obd)
986 { return; }
987 #ifdef HAVE_SERVER_SUPPORT
988 static inline
989 ssize_t lprocfs_nid_stats_seq_write(struct file *file,
990                                     const char __user *buffer,
991                                     size_t count, loff_t *off)
992 {return 0;}
993 static inline
994 int lprocfs_nid_stats_clear_seq_show(struct seq_file *m, void *data)
995 {return 0;}
996 static inline int lprocfs_exp_setup(struct obd_export *exp,lnet_nid_t *peer_nid)
997 { return 0; }
998 #endif
999 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
1000 { return 0; }
1001 static inline struct proc_dir_entry *
1002 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
1003                    void *data, const struct file_operations *fops)
1004 {return 0; }
1005 static inline struct proc_dir_entry *
1006 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
1007                     const char *format, ...)
1008 {return NULL; }
1009 static inline int lprocfs_add_vars(struct proc_dir_entry *root,
1010                                    struct lprocfs_vars *var, void *data)
1011 { return 0; }
1012 static inline struct proc_dir_entry *
1013 lprocfs_register(const char *name, struct proc_dir_entry *parent,
1014                  struct lprocfs_vars *list, void *data)
1015 { return NULL; }
1016 static inline void lprocfs_remove(struct proc_dir_entry **root)
1017 { return; }
1018 static inline void lprocfs_remove_proc_entry(const char *name,
1019                                              struct proc_dir_entry *parent)
1020 { return; }
1021 static inline int lprocfs_obd_setup(struct obd_device *dev)
1022 { return 0; }
1023 static inline int lprocfs_obd_cleanup(struct obd_device *dev)
1024 { return 0; }
1025 static inline int lprocfs_uuid_seq_show(struct seq_file *m, void *data)
1026 { return 0; }
1027 static inline int lprocfs_name_seq_show(struct seq_file *m, void *data)
1028 { return 0; }
1029 static inline int lprocfs_server_seq_show(struct seq_file *m, void *data)
1030 { return 0; }
1031 static inline int lprocfs_conn_uuid_seq_show(struct seq_file *m, void *data)
1032 { return 0; }
1033 static inline int lprocfs_import_seq_show(struct seq_file *m, void *data)
1034 { return 0; }
1035 static inline int lprocfs_state_seq_show(struct seq_file *m, void *data)
1036 { return 0; }
1037 static inline int lprocfs_connect_flags_seq_show(struct seq_file *m, void *data)
1038 { return 0; }
1039 #ifdef HAVE_SERVER_SUPPORT
1040 static inline int lprocfs_num_exports_seq_show(struct seq_file *m, void *data)
1041 { return 0; }
1042 #endif
1043 struct adaptive_timeout;
1044 static inline int lprocfs_at_hist_helper(struct seq_file *m,
1045                                          struct adaptive_timeout *at)
1046 { return 0; }
1047 static inline int lprocfs_timeouts_seq_show(struct seq_file *m, void *data)
1048 { return 0; }
1049 static inline ssize_t
1050 lprocfs_timeouts_seq_write(struct file *file, const char __user *buffer,
1051                            size_t count, loff_t *off)
1052 { return 0; }
1053 #ifdef HAVE_SERVER_SUPPORT
1054 static inline ssize_t
1055 lprocfs_evict_client_seq_write(struct file *file, const char __user *buffer,
1056                                size_t count, loff_t *off)
1057 { return 0; }
1058 #endif
1059 static inline ssize_t
1060 lprocfs_ping_seq_write(struct file *file, const char __user *buffer,
1061                        size_t count, loff_t *off)
1062 { return 0; }
1063 static inline ssize_t
1064 lprocfs_import_seq_write(struct file *file, const char __user *buffer,
1065                          size_t count, loff_t *off)
1066 { return 0; }
1067 static inline int
1068 lprocfs_pinger_recov_seq_show(struct seq_file *m, void *data)
1069 { return 0; }
1070 static inline ssize_t
1071 lprocfs_pinger_recov_seq_write(struct file *file, const char __user *buffer,
1072                                size_t count, loff_t *off)
1073 { return 0; }
1074
1075 /* Statfs helpers */
1076 static inline
1077 int lprocfs_blksize_seq_show(struct seq_file *m, void *data)
1078 { return 0; }
1079 static inline
1080 int lprocfs_kbytestotal_seq_show(struct seq_file *m, void *data)
1081 { return 0; }
1082 static inline
1083 int lprocfs_kbytesfree_seq_show(struct seq_file *m, void *data)
1084 { return 0; }
1085 static inline
1086 int lprocfs_kbytesavail_seq_show(struct seq_file *m, void *data)
1087 { return 0; }
1088 static inline
1089 int lprocfs_filestotal_seq_show(struct seq_file *m, void *data)
1090 { return 0; }
1091 static inline
1092 int lprocfs_filesfree_seq_show(struct seq_file *m, void *data)
1093 { return 0; }
1094 static inline
1095 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value)
1096 { return; }
1097 static inline
1098 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value)
1099 { return; }
1100 static inline
1101 void lprocfs_oh_clear(struct obd_histogram *oh)
1102 { return; }
1103 static inline
1104 unsigned long lprocfs_oh_sum(struct obd_histogram *oh)
1105 { return 0; }
1106 static inline
1107 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
1108                            struct lprocfs_counter *cnt)
1109 { return; }
1110 static inline
1111 __u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
1112                                enum lprocfs_fields_flags field)
1113 { return (__u64)0; }
1114
1115 #define LPROC_SEQ_FOPS_RO(name)
1116 #define LPROC_SEQ_FOPS(name)
1117 #define LPROC_SEQ_FOPS_RO_TYPE(name, type)
1118 #define LPROC_SEQ_FOPS_RW_TYPE(name, type)
1119 #define LPROC_SEQ_FOPS_WO_TYPE(name, type)
1120
1121 /* lprocfs_jobstats.c */
1122 static inline
1123 int lprocfs_job_stats_log(struct obd_device *obd, char *jobid, int event,
1124                           long amount)
1125 { return 0; }
1126 static inline
1127 void lprocfs_job_stats_fini(struct obd_device *obd)
1128 { return; }
1129 static inline
1130 int lprocfs_job_stats_init(struct obd_device *obd, int cntr_num,
1131                            cntr_init_callback fn)
1132 { return 0; }
1133
1134
1135 /* lproc_ptlrpc.c */
1136 #define target_print_req NULL
1137
1138 #endif /* CONFIG_PROC_FS */
1139
1140 #endif /* LPROCFS_STATUS_H */