Whamcloud - gitweb
978b10cc2b07bb010b8dd50f2202d98ebe334580
[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, 2013, 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 SNMP
39  *
40  * Author: Hariharan Thantry thantry@users.sourceforge.net
41  */
42 #ifndef _LPROCFS_SNMP_H
43 #define _LPROCFS_SNMP_H
44
45 #if defined(__linux__)
46 #include <linux/lprocfs_status.h>
47 #elif defined(__APPLE__)
48 #include <darwin/lprocfs_status.h>
49 #elif defined(__WINNT__)
50 #include <winnt/lprocfs_status.h>
51 #else
52 #error Unsupported operating system.
53 #endif
54 #include <lustre/lustre_idl.h>
55 #include <libcfs/params_tree.h>
56
57 #ifndef HAVE_ONLY_PROCFS_SEQ
58 struct lprocfs_vars {
59         const char                      *name;
60         read_proc_t                     *read_fptr;
61         write_proc_t                    *write_fptr;
62         void                            *data;
63         const struct file_operations    *fops;
64         /**
65          * /proc file mode.
66          */
67         mode_t                          proc_mode;
68 };
69
70 struct lprocfs_static_vars {
71         struct lprocfs_vars *module_vars;
72         struct lprocfs_vars *obd_vars;
73 };
74
75 #endif
76
77 struct lprocfs_seq_vars {
78         const char                      *name;
79         const struct file_operations    *fops;
80         void                            *data;
81         /**
82          * /proc file mode.
83          */
84         mode_t                           proc_mode;
85 };
86
87 /* if we find more consumers this could be generalized */
88 #define OBD_HIST_MAX 32
89 struct obd_histogram {
90         spinlock_t      oh_lock;
91         unsigned long   oh_buckets[OBD_HIST_MAX];
92 };
93
94 enum {
95         BRW_R_PAGES = 0,
96         BRW_W_PAGES,
97         BRW_R_RPC_HIST,
98         BRW_W_RPC_HIST,
99         BRW_R_IO_TIME,
100         BRW_W_IO_TIME,
101         BRW_R_DISCONT_PAGES,
102         BRW_W_DISCONT_PAGES,
103         BRW_R_DISCONT_BLOCKS,
104         BRW_W_DISCONT_BLOCKS,
105         BRW_R_DISK_IOSIZE,
106         BRW_W_DISK_IOSIZE,
107         BRW_R_DIO_FRAGS,
108         BRW_W_DIO_FRAGS,
109         BRW_LAST,
110 };
111
112 struct brw_stats {
113         struct obd_histogram hist[BRW_LAST];
114 };
115
116 enum {
117         RENAME_SAMEDIR_SIZE = 0,
118         RENAME_CROSSDIR_SRC_SIZE,
119         RENAME_CROSSDIR_TGT_SIZE,
120         RENAME_LAST,
121 };
122
123 struct rename_stats {
124         struct obd_histogram hist[RENAME_LAST];
125 };
126
127 /* An lprocfs counter can be configured using the enum bit masks below.
128  *
129  * LPROCFS_CNTR_EXTERNALLOCK indicates that an external lock already
130  * protects this counter from concurrent updates. If not specified,
131  * lprocfs an internal per-counter lock variable. External locks are
132  * not used to protect counter increments, but are used to protect
133  * counter readout and resets.
134  *
135  * LPROCFS_CNTR_AVGMINMAX indicates a multi-valued counter samples,
136  * (i.e. counter can be incremented by more than "1"). When specified,
137  * the counter maintains min, max and sum in addition to a simple
138  * invocation count. This allows averages to be be computed.
139  * If not specified, the counter is an increment-by-1 counter.
140  * min, max, sum, etc. are not maintained.
141  *
142  * LPROCFS_CNTR_STDDEV indicates that the counter should track sum of
143  * squares (for multi-valued counter samples only). This allows
144  * external computation of standard deviation, but involves a 64-bit
145  * multiply per counter increment.
146  */
147
148 enum {
149         LPROCFS_CNTR_EXTERNALLOCK = 0x0001,
150         LPROCFS_CNTR_AVGMINMAX    = 0x0002,
151         LPROCFS_CNTR_STDDEV       = 0x0004,
152
153         /* counter data type */
154         LPROCFS_TYPE_REGS         = 0x0100,
155         LPROCFS_TYPE_BYTES        = 0x0200,
156         LPROCFS_TYPE_PAGES        = 0x0400,
157         LPROCFS_TYPE_CYCLE        = 0x0800,
158 };
159
160 #define LC_MIN_INIT ((~(__u64)0) >> 1)
161
162 struct lprocfs_counter_header {
163         unsigned int            lc_config;
164         const char              *lc_name;   /* must be static */
165         const char              *lc_units;  /* must be static */
166 };
167
168 struct lprocfs_counter {
169         __s64   lc_count;
170         __s64   lc_min;
171         __s64   lc_max;
172         __s64   lc_sumsquare;
173         /*
174          * Every counter has lc_array_sum[0], while lc_array_sum[1] is only
175          * for irq context counter, i.e. stats with
176          * LPROCFS_STATS_FLAG_IRQ_SAFE flag, its counter need
177          * lc_array_sum[1]
178          */
179         __s64   lc_array_sum[1];
180 };
181 #define lc_sum          lc_array_sum[0]
182 #define lc_sum_irq      lc_array_sum[1]
183
184 struct lprocfs_percpu {
185 #ifndef __GNUC__
186         __s64                   pad;
187 #endif
188         struct lprocfs_counter lp_cntr[0];
189 };
190
191 #define LPROCFS_GET_NUM_CPU 0x0001
192 #define LPROCFS_GET_SMP_ID  0x0002
193
194 enum lprocfs_stats_flags {
195         LPROCFS_STATS_FLAG_NONE     = 0x0000, /* per cpu counter */
196         LPROCFS_STATS_FLAG_NOPERCPU = 0x0001, /* stats have no percpu
197                                                * area and need locking */
198         LPROCFS_STATS_FLAG_IRQ_SAFE = 0x0002, /* alloc need irq safe */
199 };
200
201 enum lprocfs_fields_flags {
202         LPROCFS_FIELDS_FLAGS_CONFIG     = 0x0001,
203         LPROCFS_FIELDS_FLAGS_SUM        = 0x0002,
204         LPROCFS_FIELDS_FLAGS_MIN        = 0x0003,
205         LPROCFS_FIELDS_FLAGS_MAX        = 0x0004,
206         LPROCFS_FIELDS_FLAGS_AVG        = 0x0005,
207         LPROCFS_FIELDS_FLAGS_SUMSQUARE  = 0x0006,
208         LPROCFS_FIELDS_FLAGS_COUNT      = 0x0007,
209 };
210
211 struct lprocfs_stats {
212         /* # of counters */
213         unsigned short                  ls_num;
214         /* 1 + the biggest cpu # whose ls_percpu slot has been allocated */
215         unsigned short                  ls_biggest_alloc_num;
216         enum lprocfs_stats_flags        ls_flags;
217         /* Lock used when there are no percpu stats areas; For percpu stats,
218          * it is used to protect ls_biggest_alloc_num change */
219         spinlock_t                      ls_lock;
220
221         /* has ls_num of counter headers */
222         struct lprocfs_counter_header   *ls_cnt_header;
223         struct lprocfs_percpu           *ls_percpu[0];
224 };
225
226 #define OPC_RANGE(seg) (seg ## _LAST_OPC - seg ## _FIRST_OPC)
227
228 /* Pack all opcodes down into a single monotonically increasing index */
229 static inline int opcode_offset(__u32 opc) {
230         if (opc < OST_LAST_OPC) {
231                  /* OST opcode */
232                 return (opc - OST_FIRST_OPC);
233         } else if (opc < MDS_LAST_OPC) {
234                 /* MDS opcode */
235                 return (opc - MDS_FIRST_OPC +
236                         OPC_RANGE(OST));
237         } else if (opc < LDLM_LAST_OPC) {
238                 /* LDLM Opcode */
239                 return (opc - LDLM_FIRST_OPC +
240                         OPC_RANGE(MDS) +
241                         OPC_RANGE(OST));
242         } else if (opc < MGS_LAST_OPC) {
243                 /* MGS Opcode */
244                 return (opc - MGS_FIRST_OPC +
245                         OPC_RANGE(LDLM) +
246                         OPC_RANGE(MDS) +
247                         OPC_RANGE(OST));
248         } else if (opc < OBD_LAST_OPC) {
249                 /* OBD Ping */
250                 return (opc - OBD_FIRST_OPC +
251                         OPC_RANGE(MGS) +
252                         OPC_RANGE(LDLM) +
253                         OPC_RANGE(MDS) +
254                         OPC_RANGE(OST));
255         } else if (opc < LLOG_LAST_OPC) {
256                 /* LLOG Opcode */
257                 return (opc - LLOG_FIRST_OPC +
258                         OPC_RANGE(OBD) +
259                         OPC_RANGE(MGS) +
260                         OPC_RANGE(LDLM) +
261                         OPC_RANGE(MDS) +
262                         OPC_RANGE(OST));
263         } else if (opc < QUOTA_LAST_OPC) {
264                 /* LQUOTA Opcode */
265                 return (opc - QUOTA_FIRST_OPC +
266                         OPC_RANGE(LLOG) +
267                         OPC_RANGE(OBD) +
268                         OPC_RANGE(MGS) +
269                         OPC_RANGE(LDLM) +
270                         OPC_RANGE(MDS) +
271                         OPC_RANGE(OST));
272         } else if (opc < SEQ_LAST_OPC) {
273                 /* SEQ opcode */
274                 return (opc - SEQ_FIRST_OPC +
275                         OPC_RANGE(QUOTA) +
276                         OPC_RANGE(LLOG) +
277                         OPC_RANGE(OBD) +
278                         OPC_RANGE(MGS) +
279                         OPC_RANGE(LDLM) +
280                         OPC_RANGE(MDS) +
281                         OPC_RANGE(OST));
282         } else if (opc < SEC_LAST_OPC) {
283                 /* SEC opcode */
284                 return (opc - SEC_FIRST_OPC +
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 < FLD_LAST_OPC) {
294                 /* FLD opcode */
295                  return (opc - FLD_FIRST_OPC +
296                         OPC_RANGE(SEC) +
297                         OPC_RANGE(SEQ) +
298                         OPC_RANGE(QUOTA) +
299                         OPC_RANGE(LLOG) +
300                         OPC_RANGE(OBD) +
301                         OPC_RANGE(MGS) +
302                         OPC_RANGE(LDLM) +
303                         OPC_RANGE(MDS) +
304                         OPC_RANGE(OST));
305         } else if (opc < OUT_UPDATE_LAST_OPC) {
306                 /* update opcode */
307                 return (opc - OUT_UPDATE_FIRST_OPC +
308                         OPC_RANGE(FLD) +
309                         OPC_RANGE(SEC) +
310                         OPC_RANGE(SEQ) +
311                         OPC_RANGE(QUOTA) +
312                         OPC_RANGE(LLOG) +
313                         OPC_RANGE(OBD) +
314                         OPC_RANGE(MGS) +
315                         OPC_RANGE(LDLM) +
316                         OPC_RANGE(MDS) +
317                         OPC_RANGE(OST));
318         } else if (opc < LFSCK_LAST_OPC) {
319                 /* LFSCK opcode */
320                 return (opc - LFSCK_FIRST_OPC +
321                         OPC_RANGE(OUT_UPDATE) +
322                         OPC_RANGE(FLD) +
323                         OPC_RANGE(SEC) +
324                         OPC_RANGE(SEQ) +
325                         OPC_RANGE(QUOTA) +
326                         OPC_RANGE(LLOG) +
327                         OPC_RANGE(OBD) +
328                         OPC_RANGE(MGS) +
329                         OPC_RANGE(LDLM) +
330                         OPC_RANGE(MDS) +
331                         OPC_RANGE(OST));
332         } else {
333                 /* Unknown Opcode */
334                 return -1;
335         }
336 }
337
338
339 #define LUSTRE_MAX_OPCODES (OPC_RANGE(OST)  + \
340                             OPC_RANGE(MDS)  + \
341                             OPC_RANGE(LDLM) + \
342                             OPC_RANGE(MGS)  + \
343                             OPC_RANGE(OBD)  + \
344                             OPC_RANGE(LLOG) + \
345                             OPC_RANGE(SEC)  + \
346                             OPC_RANGE(SEQ)  + \
347                             OPC_RANGE(SEC)  + \
348                             OPC_RANGE(FLD)  + \
349                             OPC_RANGE(OUT_UPDATE) + \
350                             OPC_RANGE(LFSCK))
351
352 #define EXTRA_MAX_OPCODES ((PTLRPC_LAST_CNTR - PTLRPC_FIRST_CNTR)  + \
353                             OPC_RANGE(EXTRA))
354
355 enum {
356         PTLRPC_REQWAIT_CNTR = 0,
357         PTLRPC_REQQDEPTH_CNTR,
358         PTLRPC_REQACTIVE_CNTR,
359         PTLRPC_TIMEOUT,
360         PTLRPC_REQBUF_AVAIL_CNTR,
361         PTLRPC_LAST_CNTR
362 };
363
364 #define PTLRPC_FIRST_CNTR PTLRPC_REQWAIT_CNTR
365
366 enum {
367         LDLM_GLIMPSE_ENQUEUE = 0,
368         LDLM_PLAIN_ENQUEUE,
369         LDLM_EXTENT_ENQUEUE,
370         LDLM_FLOCK_ENQUEUE,
371         LDLM_IBITS_ENQUEUE,
372         MDS_REINT_SETATTR,
373         MDS_REINT_CREATE,
374         MDS_REINT_LINK,
375         MDS_REINT_UNLINK,
376         MDS_REINT_RENAME,
377         MDS_REINT_OPEN,
378         MDS_REINT_SETXATTR,
379         BRW_READ_BYTES,
380         BRW_WRITE_BYTES,
381         EXTRA_LAST_OPC
382 };
383
384 #define EXTRA_FIRST_OPC LDLM_GLIMPSE_ENQUEUE
385 /* class_obd.c */
386 extern cfs_proc_dir_entry_t *proc_lustre_root;
387
388 struct obd_device;
389 struct obd_histogram;
390
391 /* Days / hours / mins / seconds format */
392 struct dhms {
393         int d,h,m,s;
394 };
395 static inline void s2dhms(struct dhms *ts, time_t secs)
396 {
397         ts->d = secs / 86400;
398         secs = secs % 86400;
399         ts->h = secs / 3600;
400         secs = secs % 3600;
401         ts->m = secs / 60;
402         ts->s = secs % 60;
403 }
404 #define DHMS_FMT "%dd%dh%02dm%02ds"
405 #define DHMS_VARS(x) (x)->d, (x)->h, (x)->m, (x)->s
406
407 #define JOBSTATS_JOBID_VAR_MAX_LEN      20
408 #define JOBSTATS_DISABLE                "disable"
409 #define JOBSTATS_PROCNAME_UID           "procname_uid"
410
411 typedef void (*cntr_init_callback)(struct lprocfs_stats *stats);
412
413 struct obd_job_stats {
414         cfs_hash_t        *ojs_hash;
415         cfs_list_t         ojs_list;
416         rwlock_t       ojs_lock; /* protect the obj_list */
417         cntr_init_callback ojs_cntr_init_fn;
418         int                ojs_cntr_num;
419         int                ojs_cleanup_interval;
420         time_t             ojs_last_cleanup;
421 };
422
423 #ifdef LPROCFS
424
425 extern int lprocfs_stats_alloc_one(struct lprocfs_stats *stats,
426                                    unsigned int cpuid);
427 /*
428  * \return value
429  *      < 0     : on error (only possible for opc as LPROCFS_GET_SMP_ID)
430  */
431 static inline int lprocfs_stats_lock(struct lprocfs_stats *stats, int opc,
432                                      unsigned long *flags)
433 {
434         int             rc = 0;
435
436         switch (opc) {
437         default:
438                 LBUG();
439
440         case LPROCFS_GET_SMP_ID:
441                 if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
442                         if (stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE)
443                                 spin_lock_irqsave(&stats->ls_lock, *flags);
444                         else
445                                 spin_lock(&stats->ls_lock);
446                         return 0;
447                 } else {
448                         unsigned int cpuid = get_cpu();
449
450                         if (unlikely(stats->ls_percpu[cpuid] == NULL)) {
451                                 rc = lprocfs_stats_alloc_one(stats, cpuid);
452                                 if (rc < 0) {
453                                         put_cpu();
454                                         return rc;
455                                 }
456                         }
457                         return cpuid;
458                 }
459
460         case LPROCFS_GET_NUM_CPU:
461                 if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
462                         if (stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE)
463                                 spin_lock_irqsave(&stats->ls_lock, *flags);
464                         else
465                                 spin_lock(&stats->ls_lock);
466                         return 1;
467                 } else {
468                         return stats->ls_biggest_alloc_num;
469                 }
470         }
471 }
472
473 static inline void lprocfs_stats_unlock(struct lprocfs_stats *stats, int opc,
474                                         unsigned long *flags)
475 {
476         switch (opc) {
477         default:
478                 LBUG();
479
480         case LPROCFS_GET_SMP_ID:
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,
484                                                            *flags);
485                         } else {
486                                 spin_unlock(&stats->ls_lock);
487                         }
488                 } else {
489                         put_cpu();
490                 }
491                 return;
492
493         case LPROCFS_GET_NUM_CPU:
494                 if (stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) {
495                         if (stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE) {
496                                 spin_unlock_irqrestore(&stats->ls_lock,
497                                                            *flags);
498                         } else {
499                                 spin_unlock(&stats->ls_lock);
500                         }
501                 }
502                 return;
503         }
504 }
505
506 static inline unsigned int
507 lprocfs_stats_counter_size(struct lprocfs_stats *stats)
508 {
509         unsigned int percpusize;
510
511         percpusize = offsetof(struct lprocfs_percpu, lp_cntr[stats->ls_num]);
512
513         /* irq safe stats need lc_array_sum[1] */
514         if ((stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE) != 0)
515                 percpusize += stats->ls_num * sizeof(__s64);
516
517         if ((stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) == 0)
518                 percpusize = L1_CACHE_ALIGN(percpusize);
519
520         return percpusize;
521 }
522
523 static inline struct lprocfs_counter *
524 lprocfs_stats_counter_get(struct lprocfs_stats *stats, unsigned int cpuid,
525                           int index)
526 {
527         struct lprocfs_counter *cntr;
528
529         cntr = &stats->ls_percpu[cpuid]->lp_cntr[index];
530
531         if ((stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE) != 0)
532                 cntr = (void *)cntr + index * sizeof(__s64);
533
534         return cntr;
535 }
536
537 /* Two optimized LPROCFS counter increment functions are provided:
538  *     lprocfs_counter_incr(cntr, value) - optimized for by-one counters
539  *     lprocfs_counter_add(cntr) - use for multi-valued counters
540  * Counter data layout allows config flag, counter lock and the
541  * count itself to reside within a single cache line.
542  */
543
544 extern void lprocfs_counter_add(struct lprocfs_stats *stats, int idx,
545                                 long amount);
546 extern void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx,
547                                 long amount);
548
549 #define lprocfs_counter_incr(stats, idx) \
550         lprocfs_counter_add(stats, idx, 1)
551 #define lprocfs_counter_decr(stats, idx) \
552         lprocfs_counter_sub(stats, idx, 1)
553
554 extern __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
555                                  struct lprocfs_counter_header *header,
556                                  enum lprocfs_stats_flags flags,
557                                  enum lprocfs_fields_flags field);
558 static inline __u64 lprocfs_stats_collector(struct lprocfs_stats *stats,
559                                             int idx,
560                                             enum lprocfs_fields_flags field)
561 {
562         int           i;
563         unsigned int  num_cpu;
564         unsigned long flags     = 0;
565         __u64         ret       = 0;
566
567         LASSERT(stats != NULL);
568
569         num_cpu = lprocfs_stats_lock(stats, LPROCFS_GET_NUM_CPU, &flags);
570         for (i = 0; i < num_cpu; i++) {
571                 if (stats->ls_percpu[i] == NULL)
572                         continue;
573                 ret += lprocfs_read_helper(
574                                 lprocfs_stats_counter_get(stats, i, idx),
575                                 &stats->ls_cnt_header[idx], stats->ls_flags,
576                                 field);
577         }
578         lprocfs_stats_unlock(stats, LPROCFS_GET_NUM_CPU, &flags);
579         return ret;
580 }
581
582 extern struct lprocfs_stats *
583 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags);
584 extern void lprocfs_clear_stats(struct lprocfs_stats *stats);
585 extern void lprocfs_free_stats(struct lprocfs_stats **stats);
586 extern void lprocfs_init_ops_stats(int num_private_stats,
587                                    struct lprocfs_stats *stats);
588 extern void lprocfs_init_mps_stats(int num_private_stats,
589                                    struct lprocfs_stats *stats);
590 extern void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats);
591 extern int lprocfs_alloc_obd_stats(struct obd_device *obddev,
592                                    unsigned int num_private_stats);
593 extern int lprocfs_alloc_md_stats(struct obd_device *obddev,
594                                   unsigned int num_private_stats);
595 extern void lprocfs_counter_init(struct lprocfs_stats *stats, int index,
596                                  unsigned conf, const char *name,
597                                  const char *units);
598 extern void lprocfs_free_obd_stats(struct obd_device *obddev);
599 extern void lprocfs_free_md_stats(struct obd_device *obddev);
600 struct obd_export;
601 struct nid_stat;
602 extern int lprocfs_add_clear_entry(struct obd_device * obd,
603                                    cfs_proc_dir_entry_t *entry);
604 #ifdef HAVE_SERVER_SUPPORT
605 extern int lprocfs_exp_setup(struct obd_export *exp,
606                              lnet_nid_t *peer_nid, int *newnid);
607 #endif
608 extern int lprocfs_exp_cleanup(struct obd_export *exp);
609 extern cfs_proc_dir_entry_t *lprocfs_add_simple(struct proc_dir_entry *root,
610                                                 char *name,
611 #ifndef HAVE_ONLY_PROCFS_SEQ
612                                                 read_proc_t *read_proc,
613                                                 write_proc_t *write_proc,
614 #endif
615                                                 void *data,
616                                                 struct file_operations *fops);
617 extern struct proc_dir_entry *
618 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
619                     const char *format, ...);
620 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
621 #ifdef HAVE_SERVER_SUPPORT
622 #ifndef HAVE_ONLY_PROCFS_SEQ
623 extern int
624 lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
625                               unsigned long count, void *data);
626 extern int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
627                                         int count, int *eof,  void *data);
628 #endif
629 extern ssize_t
630 lprocfs_nid_stats_clear_seq_write(struct file *file, const char *buffer,
631                                         size_t count, loff_t *off);
632 extern int lprocfs_nid_stats_clear_seq_show(struct seq_file *file, void *data);
633 #endif
634 extern int lprocfs_register_stats(cfs_proc_dir_entry_t *root, const char *name,
635                                   struct lprocfs_stats *stats);
636
637 /* lprocfs_status.c */
638 #ifndef HAVE_ONLY_PROCFS_SEQ
639 extern int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
640                             struct lprocfs_vars *var,
641                             void *data);
642
643 extern cfs_proc_dir_entry_t *lprocfs_register(const char *name,
644                                               cfs_proc_dir_entry_t *parent,
645                                               struct lprocfs_vars *list,
646                                               void *data);
647 #endif
648 extern int lprocfs_seq_add_vars(cfs_proc_dir_entry_t *root,
649                                 struct lprocfs_seq_vars *var,
650                                 void *data);
651
652 extern cfs_proc_dir_entry_t *
653 lprocfs_seq_register(const char *name, cfs_proc_dir_entry_t *parent,
654                      struct lprocfs_seq_vars *list, void *data);
655 extern void lprocfs_remove(cfs_proc_dir_entry_t **root);
656 extern void lprocfs_remove_proc_entry(const char *name,
657                                       struct proc_dir_entry *parent);
658 #ifndef HAVE_ONLY_PROCFS_SEQ
659 extern void lprocfs_try_remove_proc_entry(const char *name,
660                                           struct proc_dir_entry *parent);
661
662 extern cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *root,
663                                           const char *name);
664 extern int lprocfs_obd_setup(struct obd_device *obd, struct lprocfs_vars *list);
665 #endif
666 extern int lprocfs_seq_obd_setup(struct obd_device *dev);
667 extern int lprocfs_obd_cleanup(struct obd_device *obd);
668 #ifdef HAVE_SERVER_SUPPORT
669 extern struct file_operations lprocfs_evict_client_fops;
670 #endif
671 extern int lprocfs_seq_create(cfs_proc_dir_entry_t *parent, const char *name,
672                               mode_t mode,
673                               const struct file_operations *seq_fops,
674                               void *data);
675 extern int lprocfs_obd_seq_create(struct obd_device *dev, const char *name,
676                                   mode_t mode,
677                                   const struct file_operations *seq_fops,
678                                   void *data);
679
680 /* Generic callbacks */
681 #ifndef HAVE_ONLY_PROCFS_SEQ
682 extern int lprocfs_rd_u64(char *page, char **start, off_t off,
683                           int count, int *eof, void *data);
684 extern int lprocfs_rd_atomic(char *page, char **start, off_t off,
685                              int count, int *eof, void *data);
686 extern int lprocfs_wr_atomic(struct file *file, const char *buffer,
687                              unsigned long count, void *data);
688 extern int lprocfs_rd_uint(char *page, char **start, off_t off,
689                            int count, int *eof, void *data);
690 extern int lprocfs_rd_uuid(char *page, char **start, off_t off,
691                            int count, int *eof, void *data);
692 extern int lprocfs_rd_name(char *page, char **start, off_t off,
693                            int count, int *eof, void *data);
694 extern int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
695                                   int count, int *eof, void *data);
696 extern int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
697                                 int count, int *eof, void *data);
698 extern int lprocfs_rd_import(char *page, char **start, off_t off, int count,
699                              int *eof, void *data);
700 extern int lprocfs_rd_state(char *page, char **start, off_t off, int count,
701                             int *eof, void *data);
702 extern int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
703                                     int count, int *eof, void *data);
704 extern int lprocfs_rd_num_exports(char *page, char **start, off_t off,
705                                   int count, int *eof, void *data);
706 extern int lprocfs_rd_numrefs(char *page, char **start, off_t off,
707                               int count, int *eof, void *data);
708 #endif
709 extern int lprocfs_u64_seq_show(struct seq_file *m, void *data);
710 extern int lprocfs_atomic_seq_show(struct seq_file *m, void *data);
711 extern ssize_t lprocfs_atomic_seq_write(struct file *file, const char *buffer,
712                                         size_t count, loff_t *off);
713 extern int lprocfs_uint_seq_show(struct seq_file *m, void *data);
714 extern ssize_t lprocfs_uint_seq_write(struct file *file, const char *buffer,
715                                       size_t count, loff_t *off);
716 extern int lprocfs_wr_uint(struct file *file, const char *buffer,
717                            unsigned long count, void *data);
718 extern int lprocfs_uuid_seq_show(struct seq_file *m, void *data);
719 extern int lprocfs_name_seq_show(struct seq_file *m, void *data);
720 extern int lprocfs_server_uuid_seq_show(struct seq_file *m, void *data);
721 extern int lprocfs_conn_uuid_seq_show(struct seq_file *m, void *data);
722 extern int lprocfs_import_seq_show(struct seq_file *m, void *data);
723 extern int lprocfs_state_seq_show(struct seq_file *m, void *data);
724 extern int lprocfs_connect_flags_seq_show(struct seq_file *m, void *data);
725 #ifdef HAVE_SERVER_SUPPORT
726 extern int lprocfs_num_exports_seq_show(struct seq_file *m, void *data);
727 #endif
728 struct adaptive_timeout;
729 #ifndef HAVE_ONLY_PROCFS_SEQ
730 extern int lprocfs_at_hist_helper(char *page, int count, int rc,
731                                   struct adaptive_timeout *at);
732 extern int lprocfs_rd_timeouts(char *page, char **start, off_t off,
733                                int count, int *eof, void *data);
734 extern int lprocfs_wr_timeouts(struct file *file, const char *buffer,
735                                unsigned long count, void *data);
736 #endif
737 extern int lprocfs_seq_at_hist_helper(struct seq_file *m,
738                                       struct adaptive_timeout *at);
739 extern int lprocfs_timeouts_seq_show(struct seq_file *m, void *data);
740 extern ssize_t
741 lprocfs_timeouts_seq_write(struct file *file, const char *buffer,
742                            size_t count, loff_t *off);
743 #ifndef HAVE_ONLY_PROCFS_SEQ
744 #ifdef HAVE_SERVER_SUPPORT
745 extern int lprocfs_wr_evict_client(struct file *file, const char *buffer,
746                                    unsigned long count, void *data);
747 #endif
748 extern int lprocfs_wr_ping(struct file *file, const char *buffer,
749                            unsigned long count, void *data);
750 extern int lprocfs_wr_import(struct file *file, const char *buffer,
751                              unsigned long count, void *data);
752 extern int lprocfs_rd_pinger_recov(char *page, char **start, off_t off,
753                                    int count, int *eof, void *data);
754 extern int lprocfs_wr_pinger_recov(struct file *file, const char *buffer,
755                                    unsigned long count, void *data);
756 #endif
757 #ifdef HAVE_SERVER_SUPPORT
758 extern ssize_t
759 lprocfs_evict_client_seq_write(struct file *file, const char *buffer,
760                                 size_t count, loff_t *off);
761 #endif
762 extern ssize_t
763 lprocfs_ping_seq_write(struct file *file, const char *buffer,
764                        size_t count, loff_t *off);
765 extern ssize_t
766 lprocfs_import_seq_write(struct file *file, const char *buffer,
767                          size_t count, loff_t *off);
768 extern int lprocfs_pinger_recov_seq_show(struct seq_file *m, void *data);
769 extern ssize_t
770 lprocfs_pinger_recov_seq_write(struct file *file, const char *buffer,
771                                size_t count, loff_t *off);
772
773 /* Statfs helpers */
774 #ifndef HAVE_ONLY_PROCFS_SEQ
775 extern int lprocfs_rd_blksize(char *page, char **start, off_t off,
776                               int count, int *eof, void *data);
777 extern int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
778                                   int count, int *eof, void *data);
779 extern int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
780                                  int count, int *eof, void *data);
781 extern int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
782                                  int count, int *eof, void *data);
783 extern int lprocfs_rd_filestotal(char *page, char **start, off_t off,
784                                  int count, int *eof, void *data);
785 extern int lprocfs_rd_filesfree(char *page, char **start, off_t off,
786                                 int count, int *eof, void *data);
787 extern int lprocfs_rd_filegroups(char *page, char **start, off_t off,
788                                  int count, int *eof, void *data);
789 #endif
790 extern int lprocfs_blksize_seq_show(struct seq_file *m, void *data);
791 extern int lprocfs_kbytestotal_seq_show(struct seq_file *m, void *data);
792 extern int lprocfs_kbytesfree_seq_show(struct seq_file *m, void *data);
793 extern int lprocfs_kbytesavail_seq_show(struct seq_file *m, void *data);
794 extern int lprocfs_filestotal_seq_show(struct seq_file *m, void *data);
795 extern int lprocfs_filesfree_seq_show(struct seq_file *m, void *data);
796
797 extern int lprocfs_write_helper(const char *buffer, unsigned long count,
798                                 int *val);
799 extern int lprocfs_write_frac_helper(const char *buffer, unsigned long count,
800                                      int *val, int mult);
801 extern int lprocfs_seq_read_frac_helper(struct seq_file *m, long val, int mult);
802 extern int lprocfs_read_frac_helper(char *buffer, unsigned long count,
803                                     long val, int mult);
804 extern int lprocfs_write_u64_helper(const char *buffer, unsigned long count,
805                                     __u64 *val);
806 extern int lprocfs_write_frac_u64_helper(const char *buffer,
807                                          unsigned long count,
808                                          __u64 *val, int mult);
809 char *lprocfs_find_named_value(const char *buffer, const char *name,
810                                 size_t *count);
811 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value);
812 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value);
813 void lprocfs_oh_clear(struct obd_histogram *oh);
814 unsigned long lprocfs_oh_sum(struct obd_histogram *oh);
815
816 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
817                            struct lprocfs_counter *cnt);
818
819 #ifdef HAVE_SERVER_SUPPORT
820 #ifndef HAVE_ONLY_PROCFS_SEQ
821 /* lprocfs_status.c: recovery status */
822 int lprocfs_obd_rd_recovery_status(char *page, char **start, off_t off,
823                                    int count, int *eof, void *data);
824 /* lprocfs_statuc.c: hash statistics */
825 int lprocfs_obd_rd_hash(char *page, char **start, off_t off,
826                         int count, int *eof, void *data);
827
828 /* lprocfs_status.c: IR factor */
829 int lprocfs_obd_rd_ir_factor(char *page, char **start, off_t off,
830                              int count, int *eof, void *data);
831 int lprocfs_obd_wr_ir_factor(struct file *file, const char *buffer,
832                              unsigned long count, void *data);
833 #endif
834 /* lprocfs_status.c: recovery status */
835 int lprocfs_recovery_status_seq_show(struct seq_file *m, void *data);
836
837 /* lprocfs_status.c: hash statistics */
838 int lprocfs_hash_seq_show(struct seq_file *m, void *data);
839
840 /* lprocfs_status.c: IR factor */
841 int lprocfs_ir_factor_seq_show(struct seq_file *m, void *data);
842 ssize_t
843 lprocfs_ir_factor_seq_write(struct file *file, const char *buffer,
844                                 size_t count, loff_t *off);
845 #endif
846 extern int lprocfs_single_release(cfs_inode_t *, struct file *);
847 extern int lprocfs_seq_release(cfs_inode_t *, struct file *);
848
849 /* You must use these macros when you want to refer to
850  * the import in a client obd_device for a lprocfs entry */
851 #define LPROCFS_CLIMP_CHECK(obd) do {           \
852         typecheck(struct obd_device *, obd);    \
853         down_read(&(obd)->u.cli.cl_sem);    \
854         if ((obd)->u.cli.cl_import == NULL) {   \
855              up_read(&(obd)->u.cli.cl_sem); \
856              return -ENODEV;                    \
857         }                                       \
858 } while(0)
859 #define LPROCFS_CLIMP_EXIT(obd)                 \
860         up_read(&(obd)->u.cli.cl_sem);
861
862 /* write the name##_seq_show function, call LPROC_SEQ_FOPS_RO for read-only
863   proc entries; otherwise, you will define name##_seq_write function also for
864   a read-write proc entry, and then call LPROC_SEQ_SEQ instead. Finally,
865   call lprocfs_obd_seq_create(obd, filename, 0444, &name#_fops, data); */
866 #define __LPROC_SEQ_FOPS(name, custom_seq_write)                        \
867 static int name##_single_open(cfs_inode_t *inode, struct file *file)    \
868 {                                                                       \
869         LPROCFS_ENTRY_CHECK(PDE(inode));                                \
870         return single_open(file, name##_seq_show, PDE_DATA(inode));     \
871 }                                                                       \
872 struct file_operations name##_fops = {                                  \
873         .owner   = THIS_MODULE,                                         \
874         .open    = name##_single_open,                                  \
875         .read    = seq_read,                                            \
876         .write   = custom_seq_write,                                    \
877         .llseek  = seq_lseek,                                           \
878         .release = lprocfs_single_release,                              \
879 }
880
881 #define LPROC_SEQ_FOPS_RO(name)         __LPROC_SEQ_FOPS(name, NULL)
882 #define LPROC_SEQ_FOPS(name)            __LPROC_SEQ_FOPS(name, name##_seq_write)
883
884 #define LPROC_SEQ_FOPS_RO_TYPE(name, type)                              \
885         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
886         {                                                               \
887                 return lprocfs_##type##_seq_show(m, m->private);        \
888         }                                                               \
889         LPROC_SEQ_FOPS_RO(name##_##type)
890
891 #define LPROC_SEQ_FOPS_RW_TYPE(name, type)                              \
892         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
893         {                                                               \
894                 return lprocfs_##type##_seq_show(m, m->private);        \
895         }                                                               \
896         static ssize_t name##_##type##_seq_write(struct file *file,     \
897                         const char *buffer, size_t count, loff_t *off)  \
898         {                                                               \
899                 struct seq_file *seq = file->private_data;              \
900                 return lprocfs_##type##_seq_write(file, buffer,         \
901                                                 count, seq->private);   \
902         }                                                               \
903         LPROC_SEQ_FOPS(name##_##type);
904
905 #define LPROC_SEQ_FOPS_WO_TYPE(name, type)                              \
906         static ssize_t name##_##type##_write(struct file *file,         \
907                         const char *buffer, size_t count, loff_t *off)  \
908         {                                                               \
909                 return lprocfs_##type##_seq_write(file, buffer, count, off);    \
910         }                                                               \
911         static int name##_##type##_open(cfs_inode_t *inode, struct file *file)  \
912         {                                                               \
913                 return single_open(file, NULL, PDE_DATA(inode));        \
914         }                                                               \
915         struct file_operations name##_##type##_fops = {                 \
916                 .open    = name##_##type##_open,                        \
917                 .write   = name##_##type##_write,                       \
918                 .release = lprocfs_single_release,                      \
919         };
920
921 /* lproc_ptlrpc.c */
922 struct ptlrpc_request;
923 extern void target_print_req(void *seq_file, struct ptlrpc_request *req);
924
925 #ifdef HAVE_SERVER_SUPPORT
926 /* lprocfs_jobstats.c */
927 int lprocfs_job_stats_log(struct obd_device *obd, char *jobid,
928                           int event, long amount);
929 void lprocfs_job_stats_fini(struct obd_device *obd);
930 int lprocfs_job_stats_init(struct obd_device *obd, int cntr_num,
931                            cntr_init_callback fn);
932 #ifndef HAVE_ONLY_PROCFS_SEQ
933 int lprocfs_rd_job_interval(char *page, char **start, off_t off,
934                             int count, int *eof, void *data);
935 int lprocfs_wr_job_interval(struct file *file, const char *buffer,
936                             unsigned long count, void *data);
937
938 /* lproc_status.c */
939 int lprocfs_obd_rd_recovery_time_soft(char *page, char **start, off_t off,
940                                       int count, int *eof, void *data);
941 int lprocfs_obd_wr_recovery_time_soft(struct file *file,
942                                       const char *buffer,
943                                       unsigned long count, void *data);
944 int lprocfs_obd_rd_recovery_time_hard(char *page, char **start, off_t off,
945                                       int count, int *eof, void *data);
946 int lprocfs_obd_wr_recovery_time_hard(struct file *file,
947                                       const char *buffer,
948                                       unsigned long count, void *data);
949 int lprocfs_target_rd_instance(char *page, char **start, off_t off,
950                                int count, int *eof, void *data);
951 #endif
952 int lprocfs_job_interval_seq_show(struct seq_file *m, void *data);
953 ssize_t
954 lprocfs_job_interval_seq_write(struct file *file, const char *buffer,
955                                 size_t count, loff_t *off);
956 /* lproc_status.c */
957 int lprocfs_recovery_time_soft_seq_show(struct seq_file *m, void *data);
958 ssize_t lprocfs_recovery_time_soft_seq_write(struct file *file,
959                                                 const char *buffer,
960                                                 size_t count, loff_t *off);
961 int lprocfs_recovery_time_hard_seq_show(struct seq_file *m, void *data);
962 ssize_t
963 lprocfs_recovery_time_hard_seq_write(struct file *file, const char *buffer,
964                                         size_t count, loff_t *off);
965 int lprocfs_target_instance_seq_show(struct seq_file *m, void *data);
966 #endif
967 #ifndef HAVE_ONLY_PROCFS_SEQ
968 int lprocfs_obd_rd_max_pages_per_rpc(char *page, char **start, off_t off,
969                                      int count, int *eof, void *data);
970 int lprocfs_obd_wr_max_pages_per_rpc(struct file *file, const char *buffer,
971                                      unsigned long count, void *data);
972 #endif
973 int lprocfs_obd_max_pages_per_rpc_seq_show(struct seq_file *m, void *data);
974 ssize_t
975 lprocfs_obd_max_pages_per_rpc_seq_write(struct file *file, const char *buffer,
976                                        size_t count, loff_t *off);
977
978 /* all quota proc functions */
979 extern int lprocfs_quota_rd_bunit(char *page, char **start,
980                                   off_t off, int count,
981                                   int *eof, void *data);
982 extern int lprocfs_quota_wr_bunit(struct file *file, const char *buffer,
983                                   unsigned long count, void *data);
984 extern int lprocfs_quota_rd_btune(char *page, char **start,
985                                   off_t off, int count,
986                                   int *eof, void *data);
987 extern int lprocfs_quota_wr_btune(struct file *file, const char *buffer,
988                                   unsigned long count, void *data);
989 extern int lprocfs_quota_rd_iunit(char *page, char **start,
990                                   off_t off, int count,
991                                   int *eof, void *data);
992 extern int lprocfs_quota_wr_iunit(struct file *file, const char *buffer,
993                                   unsigned long count, void *data);
994 extern int lprocfs_quota_rd_itune(char *page, char **start,
995                                   off_t off, int count,
996                                   int *eof, void *data);
997 extern int lprocfs_quota_wr_itune(struct file *file, const char *buffer,
998                                   unsigned long count, void *data);
999 extern int lprocfs_quota_rd_type(char *page, char **start, off_t off, int count,
1000                                  int *eof, void *data);
1001 extern int lprocfs_quota_wr_type(struct file *file, const char *buffer,
1002                                  unsigned long count, void *data);
1003 extern int lprocfs_quota_rd_switch_seconds(char *page, char **start, off_t off,
1004                                            int count, int *eof, void *data);
1005 extern int lprocfs_quota_wr_switch_seconds(struct file *file,
1006                                            const char *buffer,
1007                                            unsigned long count, void *data);
1008 extern int lprocfs_quota_rd_sync_blk(char *page, char **start, off_t off,
1009                                      int count, int *eof, void *data);
1010 extern int lprocfs_quota_wr_sync_blk(struct file *file, const char *buffer,
1011                                      unsigned long count, void *data);
1012 extern int lprocfs_quota_rd_switch_qs(char *page, char **start, off_t off,
1013                                       int count, int *eof, void *data);
1014 extern int lprocfs_quota_wr_switch_qs(struct file *file,
1015                                       const char *buffer,
1016                                       unsigned long count, void *data);
1017 extern int lprocfs_quota_rd_boundary_factor(char *page, char **start, off_t off,
1018                                             int count, int *eof, void *data);
1019 extern int lprocfs_quota_wr_boundary_factor(struct file *file,
1020                                             const char *buffer,
1021                                             unsigned long count, void *data);
1022 extern int lprocfs_quota_rd_least_bunit(char *page, char **start, off_t off,
1023                                         int count, int *eof, void *data);
1024 extern int lprocfs_quota_wr_least_bunit(struct file *file,
1025                                         const char *buffer,
1026                                         unsigned long count, void *data);
1027 extern int lprocfs_quota_rd_least_iunit(char *page, char **start, off_t off,
1028                                         int count, int *eof, void *data);
1029 extern int lprocfs_quota_wr_least_iunit(struct file *file,
1030                                         const char *buffer,
1031                                         unsigned long count, void *data);
1032 extern int lprocfs_quota_rd_qs_factor(char *page, char **start, off_t off,
1033                                       int count, int *eof, void *data);
1034 extern int lprocfs_quota_wr_qs_factor(struct file *file,
1035                                       const char *buffer,
1036                                       unsigned long count, void *data);
1037 #else
1038 /* LPROCFS is not defined */
1039
1040 #define proc_lustre_root NULL
1041
1042 static inline void lprocfs_counter_add(struct lprocfs_stats *stats,
1043                                        int index, long amount)
1044 { return; }
1045 static inline void lprocfs_counter_incr(struct lprocfs_stats *stats,
1046                                         int index)
1047 { return; }
1048 static inline void lprocfs_counter_sub(struct lprocfs_stats *stats,
1049                                        int index, long amount)
1050 { return; }
1051 static inline void lprocfs_counter_decr(struct lprocfs_stats *stats,
1052                                         int index)
1053 { return; }
1054 static inline void lprocfs_counter_init(struct lprocfs_stats *stats,
1055                                         int index, unsigned conf,
1056                                         const char *name, const char *units)
1057 { return; }
1058
1059 static inline __u64 lc_read_helper(struct lprocfs_counter *lc,
1060                                    enum lprocfs_fields_flags field)
1061 { return 0; }
1062
1063 /* NB: we return !NULL to satisfy error checker */
1064 static inline struct lprocfs_stats *
1065 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags)
1066 { return (struct lprocfs_stats *)1; }
1067 static inline void lprocfs_clear_stats(struct lprocfs_stats *stats)
1068 { return; }
1069 static inline void lprocfs_free_stats(struct lprocfs_stats **stats)
1070 { return; }
1071 static inline int lprocfs_register_stats(cfs_proc_dir_entry_t *root,
1072                                          const char *name,
1073                                          struct lprocfs_stats *stats)
1074 { return 0; }
1075 static inline void lprocfs_init_ops_stats(int num_private_stats,
1076                                           struct lprocfs_stats *stats)
1077 { return; }
1078 static inline void lprocfs_init_mps_stats(int num_private_stats,
1079                                           struct lprocfs_stats *stats)
1080 { return; }
1081 static inline void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats)
1082 { return; }
1083 static inline int lprocfs_alloc_obd_stats(struct obd_device *obddev,
1084                                           unsigned int num_private_stats)
1085 { return 0; }
1086 static inline int lprocfs_alloc_md_stats(struct obd_device *obddev,
1087                                          unsigned int num_private_stats)
1088 { return 0; }
1089 static inline void lprocfs_free_obd_stats(struct obd_device *obddev)
1090 { return; }
1091 static inline void lprocfs_free_md_stats(struct obd_device *obddev)
1092 { return; }
1093
1094 struct obd_export;
1095 static inline int lprocfs_add_clear_entry(struct obd_export *exp)
1096 { return 0; }
1097 static inline void lprocfs_free_per_client_stats(struct obd_device *obd)
1098 { return; }
1099 #ifdef HAVE_SERVER_SUPPORT
1100 #ifndef HAVE_ONLY_PROCFS_SEQ
1101 static inline
1102 int lprocfs_nid_stats_clear_write(struct file *file, const char *buffer,
1103                                   unsigned long count, void *data)
1104 {return count;}
1105 static inline
1106 int lprocfs_nid_stats_clear_read(char *page, char **start, off_t off,
1107                                  int count, int *eof,  void *data)
1108 {return count;}
1109 #endif
1110 static inline
1111 ssize_t lprocfs_nid_stats_seq_write(struct file *file, const char *buffer,
1112                                         size_t count, loff_t *off)
1113 {return 0;}
1114 static inline
1115 int lprocfs_nid_stats_clear_seq_show(struct seq_file *m, void *data)
1116 {return 0;}
1117 static inline int lprocfs_exp_setup(struct obd_export *exp,lnet_nid_t *peer_nid,
1118                                     int *newnid)
1119 { return 0; }
1120 #endif
1121 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
1122 { return 0; }
1123 static inline cfs_proc_dir_entry_t *
1124 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
1125 #ifndef HAVE_ONLY_PROCFS_SEQ
1126                    read_proc_t *read_proc, write_proc_t *write_proc,
1127 #endif
1128                    void *data, struct file_operations *fops)
1129 {return 0; }
1130 static inline struct proc_dir_entry *
1131 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
1132                     const char *format, ...)
1133 {return NULL; }
1134 #ifndef HAVE_ONLY_PROCFS_SEQ
1135 static inline cfs_proc_dir_entry_t *
1136 lprocfs_register(const char *name, cfs_proc_dir_entry_t *parent,
1137                  struct lprocfs_vars *list, void *data)
1138 { return NULL; }
1139 static inline int lprocfs_add_vars(cfs_proc_dir_entry_t *root,
1140                                    struct lprocfs_vars *var,
1141                                    void *data)
1142 { return 0; }
1143 #endif
1144 static inline int lprocfs_seq_add_vars(cfs_proc_dir_entry_t *root,
1145                                        struct lprocfs_seq_vars *var,
1146                                        void *data)
1147 { return 0; }
1148 #ifndef HAVE_ONLY_PROCFS_SEQ
1149 static inline cfs_proc_dir_entry_t *
1150 lprocfs_seq_register(const char *name, cfs_proc_dir_entry_t *parent,
1151                      struct lprocfs_vars *list, void *data)
1152 { return NULL; }
1153 #endif
1154 static inline void lprocfs_remove(cfs_proc_dir_entry_t **root)
1155 { return; }
1156 static inline void lprocfs_remove_proc_entry(const char *name,
1157                                              struct proc_dir_entry *parent)
1158 { return; }
1159 #ifndef HAVE_ONLY_PROCFS_SEQ
1160 static inline void lprocfs_try_remove_proc_entry(const char *name,
1161                                                  struct proc_dir_entry *parent)
1162 { return; }
1163 static inline cfs_proc_dir_entry_t *lprocfs_srch(cfs_proc_dir_entry_t *head,
1164                                                  const char *name)
1165 { return 0; }
1166 static inline int lprocfs_obd_setup(struct obd_device *dev,
1167                                     struct lprocfs_vars *list)
1168 { return 0; }
1169 #endif
1170 static inline int lprocfs_seq_obd_setup(struct obd_device *dev)
1171 { return 0; }
1172 static inline int lprocfs_obd_cleanup(struct obd_device *dev)
1173 { return 0; }
1174 static inline int lprocfs_rd_u64(char *page, char **start, off_t off,
1175                                  int count, int *eof, void *data)
1176 { return 0; }
1177 #ifndef HAVE_ONLY_PROCFS_SEQ
1178 static inline int lprocfs_rd_uuid(char *page, char **start, off_t off,
1179                                   int count, int *eof, void *data)
1180 { return 0; }
1181 static inline int lprocfs_rd_name(char *page, char **start, off_t off,
1182                                   int count, int *eof, void *data)
1183 { return 0; }
1184 static inline int lprocfs_rd_server_uuid(char *page, char **start, off_t off,
1185                                          int count, int *eof, void *data)
1186 { return 0; }
1187 static inline int lprocfs_rd_conn_uuid(char *page, char **start, off_t off,
1188                                        int count, int *eof, void *data)
1189 { return 0; }
1190 static inline int lprocfs_rd_import(char *page, char **start, off_t off,
1191                                     int count, int *eof, void *data)
1192 { return 0; }
1193 static inline int lprocfs_rd_pinger_recov(char *page, char **start, off_t off,
1194                                           int count, int *eof, void *data)
1195 { return 0; }
1196 static inline int lprocfs_rd_state(char *page, char **start, off_t off,
1197                                    int count, int *eof, void *data)
1198 { return 0; }
1199 static inline int lprocfs_rd_connect_flags(char *page, char **start, off_t off,
1200                                            int count, int *eof, void *data)
1201 { return 0; }
1202 static inline int lprocfs_rd_num_exports(char *page, char **start, off_t off,
1203                                          int count, int *eof, void *data)
1204 { return 0; }
1205 static inline int lprocfs_rd_numrefs(struct seq_file *m, void *data)
1206 { return 0; }
1207 struct adaptive_timeout;
1208 static inline int lprocfs_at_hist_helper(char *page, int count, int rc,
1209                                          struct adaptive_timeout *at)
1210 { return 0; }
1211 static inline int lprocfs_rd_timeouts(char *page, char **start, off_t off,
1212                                       int count, int *eof, void *data)
1213 { return 0; }
1214 static inline int lprocfs_wr_timeouts(struct file *file,
1215                                       const char *buffer,
1216                                       unsigned long count, void *data)
1217 { return 0; }
1218 #ifdef HAVE_SERVER_SUPPORT
1219 static inline int lprocfs_wr_evict_client(struct file *file,
1220                                           const char *buffer,
1221                                           unsigned long count, void *data)
1222 { return 0; }
1223 #endif
1224 static inline int lprocfs_wr_ping(struct file *file, const char *buffer,
1225                                   unsigned long count, void *data)
1226 { return 0; }
1227 static inline int lprocfs_wr_import(struct file *file, const char *buffer,
1228                                     unsigned long count, void *data)
1229 { return 0; }
1230 static inline int lprocfs_wr_pinger_recov(struct file *file, const char *buffer,
1231                                     unsigned long count, void *data)
1232 { return 0; }
1233 #endif
1234 static inline int lprocfs_uuid_seq_show(struct seq_file *m, void *data)
1235 { return 0; }
1236 static inline int lprocfs_name_seq_show(struct seq_file *m, void *data)
1237 { return 0; }
1238 static inline int lprocfs_server_seq_show(struct seq_file *m, void *data)
1239 { return 0; }
1240 static inline int lprocfs_conn_uuid_seq_show(struct seq_file *m, void *data)
1241 { return 0; }
1242 static inline int lprocfs_import_seq_show(struct seq_file *m, void *data)
1243 { return 0; }
1244 static inline int lprocfs_state_seq_show(struct seq_file *m, void *data)
1245 { return 0; }
1246 static inline int lprocfs_connect_flags_seq_show(struct seq_file *m, void *data)
1247 { return 0; }
1248 #ifdef HAVE_SERVER_SUPPORT
1249 static inline int lprocfs_num_exports_seq_show(struct seq_file *m, void *data)
1250 { return 0; }
1251 #endif
1252 struct adaptive_timeout;
1253 static inline int lprocfs_seq_at_hist_helper(struct seq_file *m,
1254                                              struct adaptive_timeout *at)
1255 { return 0; }
1256 static inline int lprocfs_timeouts_seq_show(struct seq_file *m, void *data)
1257 { return 0; }
1258 static inline ssize_t
1259 lprocfs_timeouts_seq_write(struct file *file, const char *buffer,
1260                            size_t count, loff_t *off)
1261 { return 0; }
1262 #ifdef HAVE_SERVER_SUPPORT
1263 static inline ssize_t
1264 lprocfs_evict_client_seq_write(struct file *file, const char *buffer,
1265                                size_t count, loff_t *off)
1266 { return 0; }
1267 #endif
1268 static inline ssize_t
1269 lprocfs_ping_seq_write(struct file *file, const char *buffer,
1270                        size_t count, loff_t *off)
1271 { return 0; }
1272 static inline ssize_t
1273 lprocfs_import_seq_write(struct file *file, const char *buffer,
1274                          size_t count, loff_t *off)
1275 { return 0; }
1276 static inline int
1277 lprocfs_pinger_recov_seq_show(struct seq_file *m, void *data)
1278 { return 0; }
1279 static inline ssize_t
1280 lprocfs_pinger_recov_seq_write(struct file *file, const char *buffer,
1281                                size_t count, loff_t *off)
1282 { return 0; }
1283
1284 /* Statfs helpers */
1285 #ifndef HAVE_ONLY_PROCFS_SEQ
1286 static inline
1287 int lprocfs_rd_blksize(char *page, char **start, off_t off,
1288                        int count, int *eof, void *data)
1289 { return 0; }
1290 static inline
1291 int lprocfs_rd_kbytestotal(char *page, char **start, off_t off,
1292                            int count, int *eof, void *data)
1293 { return 0; }
1294 static inline
1295 int lprocfs_rd_kbytesfree(char *page, char **start, off_t off,
1296                           int count, int *eof, void *data)
1297 { return 0; }
1298 static inline
1299 int lprocfs_rd_kbytesavail(char *page, char **start, off_t off,
1300                            int count, int *eof, void *data)
1301 { return 0; }
1302 static inline
1303 int lprocfs_rd_filestotal(char *page, char **start, off_t off,
1304                           int count, int *eof, void *data)
1305 { return 0; }
1306 static inline
1307 int lprocfs_rd_filesfree(char *page, char **start, off_t off,
1308                          int count, int *eof, void *data)
1309 { return 0; }
1310 #endif
1311 static inline
1312 int lprocfs_blksize_seq_show(struct seq_file *m, void *data)
1313 { return 0; }
1314 static inline
1315 int lprocfs_kbytestotal_seq_show(struct seq_file *m, void *data)
1316 { return 0; }
1317 static inline
1318 int lprocfs_kbytesfree_seq_show(struct seq_file *m, void *data)
1319 { return 0; }
1320 static inline
1321 int lprocfs_kbytesavail_seq_show(struct seq_file *m, void *data)
1322 { return 0; }
1323 static inline
1324 int lprocfs_filestotal_seq_show(struct seq_file *m, void *data)
1325 { return 0; }
1326 static inline
1327 int lprocfs_filesfree_seq_show(struct seq_file *m, void *data)
1328 { return 0; }
1329 static inline
1330 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value)
1331 { return; }
1332 static inline
1333 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value)
1334 { return; }
1335 static inline
1336 void lprocfs_oh_clear(struct obd_histogram *oh)
1337 { return; }
1338 static inline
1339 unsigned long lprocfs_oh_sum(struct obd_histogram *oh)
1340 { return 0; }
1341 static inline
1342 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
1343                            struct lprocfs_counter *cnt)
1344 { return; }
1345 static inline
1346 __u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
1347                                enum lprocfs_fields_flags field)
1348 { return (__u64)0; }
1349
1350 #define LPROC_SEQ_FOPS_RO(name)
1351 #define LPROC_SEQ_FOPS(name)
1352 #define LPROC_SEQ_FOPS_RO_TYPE(name, type)
1353 #define LPROC_SEQ_FOPS_RW_TYPE(name, type)
1354 #define LPROC_SEQ_FOPS_WO_TYPE(name, type)
1355
1356 /* lprocfs_jobstats.c */
1357 static inline
1358 int lprocfs_job_stats_log(struct obd_device *obd, char *jobid, int event,
1359                           long amount)
1360 { return 0; }
1361 static inline
1362 void lprocfs_job_stats_fini(struct obd_device *obd)
1363 { return; }
1364 static inline
1365 int lprocfs_job_stats_init(struct obd_device *obd, int cntr_num,
1366                            cntr_init_callback fn)
1367 { return 0; }
1368
1369
1370 /* lproc_ptlrpc.c */
1371 #define target_print_req NULL
1372
1373 #endif /* LPROCFS */
1374
1375 #endif /* LPROCFS_SNMP_H */