Whamcloud - gitweb
LU-17744 ldiskfs: mballoc stats fixes
[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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/include/lprocfs_status.h
32  *
33  * Top level header file for LProc
34  *
35  * Author: Hariharan Thantry thantry@users.sourceforge.net
36  */
37 #ifndef _LPROCFS_STATUS_H
38 #define _LPROCFS_STATUS_H
39
40 #include <linux/fs.h>
41 #include <linux/proc_fs.h>
42 #include <linux/debugfs.h>
43 #include <linux/rwsem.h>
44 #include <linux/spinlock.h>
45 #include <linux/string_helpers.h>
46 #include <linux/seq_file.h>
47
48 #include <libcfs/libcfs.h>
49 #include <libcfs/linux/linux-fs.h>
50 #include <uapi/linux/lustre/lustre_idl.h>
51
52 /*
53  * Liuux 5.6 introduces proc_ops with v5.5-8862-gd56c0d45f0e2
54  * Now that proc and debugfs use separate operation vector types
55  * separate containers are also needed.
56  */
57 struct lprocfs_vars {
58         const char                      *name;
59         const struct proc_ops           *fops;
60         void                            *data;
61         /** /proc file mode. */
62         mode_t                           proc_mode;
63 };
64
65 /** Provide a debugfs container */
66 struct ldebugfs_vars {
67         const char                      *name;
68         const struct file_operations    *fops;
69         void                            *data;
70         /** debugfs file mode. */
71         mode_t                           proc_mode;
72 };
73
74 static inline unsigned int pct(unsigned long a, unsigned long b)
75 {
76         return b ? a * 100 / b : 0;
77 }
78
79 #define PAGES_TO_MiB(pages)     ((pages) >> (20 - PAGE_SHIFT))
80 #define MiB_TO_PAGES(mb)        ((mb) << (20 - PAGE_SHIFT))
81
82 /**
83  * Append a space separated list of current set flags to str.
84  */
85 #define flag2str(port, flag)                                            \
86         do {                                                            \
87                 if ((port)->port##_##flag) {                            \
88                         seq_printf(m, "%s" #flag, first ? "" : ", ");   \
89                         first = false;                                  \
90                 }                                                       \
91         } while (0)
92
93 void obd_connect_seq_flags2str(struct seq_file *m, __u64 flags, __u64 flags2,
94                                const char *sep);
95 void obd_connect_data_seqprint(struct seq_file *m,
96                                struct obd_connect_data *ocd);
97
98 /* if we find more consumers this could be generalized */
99 #define OBD_HIST_MAX 32
100 struct obd_histogram {
101         spinlock_t      oh_lock;
102         unsigned long   oh_buckets[OBD_HIST_MAX];
103 };
104
105 enum {
106         RENAME_SAMEDIR_SIZE = 0,
107         RENAME_CROSSDIR_SRC_SIZE,
108         RENAME_CROSSDIR_TGT_SIZE,
109         RENAME_LAST,
110 };
111
112 struct rename_stats {
113         ktime_t                 rs_init;
114         struct obd_histogram    rs_hist[RENAME_LAST];
115 };
116
117 /* An lprocfs counter can be configured using the enum bit masks below.
118  *
119  * LPROCFS_CNTR_EXTERNALLOCK indicates that an external lock already
120  * protects this counter from concurrent updates. If not specified,
121  * lprocfs an internal per-counter lock variable. External locks are
122  * not used to protect counter increments, but are used to protect
123  * counter readout and resets.
124  *
125  * LPROCFS_CNTR_AVGMINMAX indicates a multi-valued counter samples,
126  * (i.e. counter can be incremented by more than "1"). When specified,
127  * the counter maintains min, max and sum in addition to a simple
128  * invocation count. This allows averages to be be computed.
129  * If not specified, the counter is an increment-by-1 counter.
130  * min, max, sum, etc. are not maintained.
131  *
132  * LPROCFS_CNTR_STDDEV indicates that the counter should track sum of
133  * squares (for multi-valued counter samples only). This allows
134  * external computation of standard deviation, but involves a 64-bit
135  * multiply per counter increment.
136  */
137
138 enum {
139         LPROCFS_CNTR_EXTERNALLOCK       = 0x0001,
140         LPROCFS_CNTR_AVGMINMAX          = 0x0002,
141         LPROCFS_CNTR_STDDEV             = 0x0004,
142
143         /* counter data type */
144         LPROCFS_TYPE_REQS               = 0x0100,
145         LPROCFS_TYPE_BYTES              = 0x0200,
146         LPROCFS_TYPE_PAGES              = 0x0400,
147         LPROCFS_TYPE_USEC               = 0x0800,
148
149         LPROCFS_TYPE_LATENCY            = LPROCFS_TYPE_USEC |
150                                           LPROCFS_CNTR_AVGMINMAX |
151                                           LPROCFS_CNTR_STDDEV,
152         LPROCFS_TYPE_BYTES_FULL         = LPROCFS_TYPE_BYTES |
153                                           LPROCFS_CNTR_AVGMINMAX |
154                                           LPROCFS_CNTR_STDDEV,
155 };
156 #define LC_MIN_INIT ((~(__u64)0) >> 1)
157
158 struct lprocfs_counter_header {
159         unsigned int            lc_config;
160         const char              *lc_name;   /* must be static */
161         const char              *lc_units;  /* must be static */
162 };
163
164 struct lprocfs_counter {
165         __s64   lc_count;
166         __s64   lc_min;
167         __s64   lc_max;
168         __s64   lc_sumsquare;
169         /*
170          * Every counter has lc_array_sum[0], while lc_array_sum[1] is only
171          * for irq context counter, i.e. stats with
172          * LPROCFS_STATS_FLAG_IRQ_SAFE flag, its counter need
173          * lc_array_sum[1]
174          */
175         __s64   lc_array_sum[1];
176 };
177 #define lc_sum          lc_array_sum[0]
178 #define lc_sum_irq      lc_array_sum[1]
179
180 struct lprocfs_percpu {
181         struct lprocfs_counter lp_cntr[0];
182 };
183
184 enum lprocfs_stats_lock_ops {
185         LPROCFS_GET_NUM_CPU     = 0x0001, /* number allocated per-CPU stats */
186         LPROCFS_GET_SMP_ID      = 0x0002, /* current stat to be updated */
187 };
188
189 enum lprocfs_stats_flags {
190         LPROCFS_STATS_FLAG_NONE     = 0x0000, /* per cpu counter */
191         LPROCFS_STATS_FLAG_NOPERCPU = 0x0001, /* stats have no percpu
192                                                * area and need locking */
193         LPROCFS_STATS_FLAG_IRQ_SAFE = 0x0002, /* alloc need irq safe */
194 };
195
196 enum lprocfs_fields_flags {
197         LPROCFS_FIELDS_FLAGS_CONFIG     = 0x0001,
198         LPROCFS_FIELDS_FLAGS_SUM        = 0x0002,
199         LPROCFS_FIELDS_FLAGS_MIN        = 0x0003,
200         LPROCFS_FIELDS_FLAGS_MAX        = 0x0004,
201         LPROCFS_FIELDS_FLAGS_AVG        = 0x0005,
202         LPROCFS_FIELDS_FLAGS_SUMSQUARE  = 0x0006,
203         LPROCFS_FIELDS_FLAGS_COUNT      = 0x0007,
204 };
205
206 struct lprocfs_stats {
207         /* # of counters */
208         unsigned short                  ls_num;
209         /* 1 + the biggest cpu # whose ls_percpu slot has been allocated */
210         unsigned short                  ls_biggest_alloc_num;
211         enum lprocfs_stats_flags        ls_flags;
212         ktime_t                         ls_init;
213         /* Lock used when there are no percpu stats areas; For percpu stats,
214          * it is used to protect ls_biggest_alloc_num change */
215         spinlock_t                      ls_lock;
216
217         /* has ls_num of counter headers */
218         struct lprocfs_counter_header   *ls_cnt_header;
219         struct lprocfs_percpu           *ls_percpu[0];
220 };
221
222 #define OPC_RANGE(seg) (seg ## _LAST_OPC - seg ## _FIRST_OPC)
223
224 /* Pack all opcodes down into a single monotonically increasing index */
225 static inline int opcode_offset(__u32 opc) {
226         if (opc < OST_LAST_OPC) {
227                  /* OST opcode */
228                 return (opc - OST_FIRST_OPC);
229         } else if (opc < MDS_LAST_OPC) {
230                 /* MDS opcode */
231                 return (opc - MDS_FIRST_OPC +
232                         OPC_RANGE(OST));
233         } else if (opc < LDLM_LAST_OPC) {
234                 /* LDLM Opcode */
235                 return (opc - LDLM_FIRST_OPC +
236                         OPC_RANGE(MDS) +
237                         OPC_RANGE(OST));
238         } else if (opc < MGS_LAST_OPC) {
239                 /* MGS Opcode */
240                 return (opc - MGS_FIRST_OPC +
241                         OPC_RANGE(LDLM) +
242                         OPC_RANGE(MDS) +
243                         OPC_RANGE(OST));
244         } else if (opc < OBD_LAST_OPC) {
245                 /* OBD Ping */
246                 return (opc - OBD_FIRST_OPC +
247                         OPC_RANGE(MGS) +
248                         OPC_RANGE(LDLM) +
249                         OPC_RANGE(MDS) +
250                         OPC_RANGE(OST));
251         } else if (opc < LLOG_LAST_OPC) {
252                 /* LLOG Opcode */
253                 return (opc - LLOG_FIRST_OPC +
254                         OPC_RANGE(OBD) +
255                         OPC_RANGE(MGS) +
256                         OPC_RANGE(LDLM) +
257                         OPC_RANGE(MDS) +
258                         OPC_RANGE(OST));
259         } else if (opc < QUOTA_LAST_OPC) {
260                 /* LQUOTA Opcode */
261                 return (opc - QUOTA_FIRST_OPC +
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 < SEQ_LAST_OPC) {
269                 /* SEQ opcode */
270                 return (opc - SEQ_FIRST_OPC +
271                         OPC_RANGE(QUOTA) +
272                         OPC_RANGE(LLOG) +
273                         OPC_RANGE(OBD) +
274                         OPC_RANGE(MGS) +
275                         OPC_RANGE(LDLM) +
276                         OPC_RANGE(MDS) +
277                         OPC_RANGE(OST));
278         } else if (opc < SEC_LAST_OPC) {
279                 /* SEC opcode */
280                 return (opc - SEC_FIRST_OPC +
281                         OPC_RANGE(SEQ) +
282                         OPC_RANGE(QUOTA) +
283                         OPC_RANGE(LLOG) +
284                         OPC_RANGE(OBD) +
285                         OPC_RANGE(MGS) +
286                         OPC_RANGE(LDLM) +
287                         OPC_RANGE(MDS) +
288                         OPC_RANGE(OST));
289         } else if (opc < FLD_LAST_OPC) {
290                 /* FLD opcode */
291                  return (opc - FLD_FIRST_OPC +
292                         OPC_RANGE(SEC) +
293                         OPC_RANGE(SEQ) +
294                         OPC_RANGE(QUOTA) +
295                         OPC_RANGE(LLOG) +
296                         OPC_RANGE(OBD) +
297                         OPC_RANGE(MGS) +
298                         OPC_RANGE(LDLM) +
299                         OPC_RANGE(MDS) +
300                         OPC_RANGE(OST));
301 #ifdef HAVE_SERVER_SUPPORT
302         } else if (opc < OUT_UPDATE_LAST_OPC) {
303                 /* update opcode */
304                 return (opc - OUT_UPDATE_FIRST_OPC +
305                         OPC_RANGE(FLD) +
306                         OPC_RANGE(SEC) +
307                         OPC_RANGE(SEQ) +
308                         OPC_RANGE(QUOTA) +
309                         OPC_RANGE(LLOG) +
310                         OPC_RANGE(OBD) +
311                         OPC_RANGE(MGS) +
312                         OPC_RANGE(LDLM) +
313                         OPC_RANGE(MDS) +
314                         OPC_RANGE(OST));
315         } else if (opc < LFSCK_LAST_OPC) {
316                 /* LFSCK opcode */
317                 return (opc - LFSCK_FIRST_OPC +
318                         OPC_RANGE(OUT_UPDATE) +
319                         OPC_RANGE(FLD) +
320                         OPC_RANGE(SEC) +
321                         OPC_RANGE(SEQ) +
322                         OPC_RANGE(QUOTA) +
323                         OPC_RANGE(LLOG) +
324                         OPC_RANGE(OBD) +
325                         OPC_RANGE(MGS) +
326                         OPC_RANGE(LDLM) +
327                         OPC_RANGE(MDS) +
328                         OPC_RANGE(OST));
329 #endif /* HAVE_SERVER_SUPPORT */
330         } else {
331                 /* Unknown Opcode */
332                 return -1;
333         }
334 }
335
336 #define LUSTRE_MAX_OPCODES_CLIENT (OPC_RANGE(OST)  + \
337                                    OPC_RANGE(MDS)  + \
338                                    OPC_RANGE(LDLM) + \
339                                    OPC_RANGE(MGS)  + \
340                                    OPC_RANGE(OBD)  + \
341                                    OPC_RANGE(LLOG) + \
342                                    OPC_RANGE(SEC)  + \
343                                    OPC_RANGE(SEQ)  + \
344                                    OPC_RANGE(SEC)  + \
345                                    OPC_RANGE(FLD))
346
347 #ifdef HAVE_SERVER_SUPPORT
348 #define LUSTRE_MAX_OPCODES (LUSTRE_MAX_OPCODES_CLIENT + \
349                             OPC_RANGE(OUT_UPDATE) + \
350                             OPC_RANGE(LFSCK))
351 #else
352 #define LUSTRE_MAX_OPCODES LUSTRE_MAX_OPCODES_CLIENT
353 #endif
354
355 #define EXTRA_MAX_OPCODES ((PTLRPC_LAST_CNTR - PTLRPC_FIRST_CNTR)  + \
356                             OPC_RANGE(EXTRA))
357
358 enum {
359         PTLRPC_REQWAIT_CNTR = 0,
360         PTLRPC_REQQDEPTH_CNTR,
361         PTLRPC_REQACTIVE_CNTR,
362         PTLRPC_TIMEOUT,
363         PTLRPC_REQBUF_AVAIL_CNTR,
364         PTLRPC_LAST_CNTR
365 };
366
367 #define PTLRPC_FIRST_CNTR PTLRPC_REQWAIT_CNTR
368
369 enum lprocfs_extra_opc {
370         LDLM_GLIMPSE_ENQUEUE = 0,
371         LDLM_PLAIN_ENQUEUE,
372         LDLM_EXTENT_ENQUEUE,
373         LDLM_FLOCK_ENQUEUE,
374         LDLM_IBITS_ENQUEUE,
375         MDS_REINT_SETATTR,
376         MDS_REINT_CREATE,
377         MDS_REINT_LINK,
378         MDS_REINT_UNLINK,
379         MDS_REINT_RENAME,
380         MDS_REINT_OPEN,
381         MDS_REINT_SETXATTR,
382         MDS_REINT_RESYNC,
383         BRW_READ_BYTES,
384         BRW_WRITE_BYTES,
385         EXTRA_LAST_OPC
386 };
387
388 #ifdef HAVE_SERVER_SUPPORT
389 enum brw_rw_stats {
390         BRW_R_PAGES = 0,
391         BRW_W_PAGES,
392         BRW_R_DISCONT_PAGES,
393         BRW_W_DISCONT_PAGES,
394         BRW_R_DISCONT_BLOCKS,
395         BRW_W_DISCONT_BLOCKS,
396         BRW_R_DIO_FRAGS,
397         BRW_W_DIO_FRAGS,
398         BRW_R_RPC_HIST,
399         BRW_W_RPC_HIST,
400         BRW_R_IO_TIME,
401         BRW_W_IO_TIME,
402         BRW_R_DISK_IOSIZE,
403         BRW_W_DISK_IOSIZE,
404         BRW_RW_STATS_NUM,
405 };
406
407 struct brw_stats_props {
408         const char      *bsp_name;
409         const char      *bsp_units;
410         bool             bsp_scale;
411 };
412
413 struct brw_stats {
414         ktime_t                 bs_init;
415         struct obd_histogram    bs_hist[BRW_RW_STATS_NUM];
416         struct brw_stats_props  bs_props[BRW_RW_STATS_NUM / 2];
417 };
418
419 void ldebugfs_register_osd_stats(struct dentry *parent,
420                                  struct brw_stats *brw_stats,
421                                  struct lprocfs_stats *stats);
422 #endif /* HAVE_SERVER_SUPPORT */
423
424 #define EXTRA_FIRST_OPC LDLM_GLIMPSE_ENQUEUE
425 /* class_obd.c */
426 extern struct proc_dir_entry *proc_lustre_root;
427 extern struct dentry *debugfs_lustre_root;
428 extern struct kset *lustre_kset;
429
430 struct obd_device;
431
432 #define JOBSTATS_JOBID_VAR_MAX_LEN      20
433 #define JOBSTATS_DISABLE                "disable"
434 #define JOBSTATS_PROCNAME_UID           "procname_uid"
435 #define JOBSTATS_NODELOCAL              "nodelocal"
436 #define JOBSTATS_SESSION                "session"
437
438 typedef void (*cntr_init_callback)(struct lprocfs_stats *stats,
439                                    unsigned int offset);
440
441 struct obd_job_stats {
442         struct cfs_hash        *ojs_hash;       /* hash of jobids */
443         struct list_head        ojs_list;       /* list of job_stat structs */
444         rwlock_t                ojs_lock;       /* protect ojs_list/js_list */
445         ktime_t                 ojs_cleanup_interval;/* 1/2 expiry seconds */
446         ktime_t                 ojs_cleanup_last;/* previous cleanup time */
447         cntr_init_callback      ojs_cntr_init_fn;/* lprocfs_stats initializer */
448         unsigned short          ojs_cntr_num;   /* number of stats in struct */
449         bool                    ojs_cleaning;   /* currently expiring stats */
450 };
451
452 #ifdef CONFIG_PROC_FS
453
454 int lprocfs_stats_alloc_one(struct lprocfs_stats *stats,
455                             unsigned int cpuid);
456 int lprocfs_stats_lock(struct lprocfs_stats *stats,
457                        enum lprocfs_stats_lock_ops opc,
458                        unsigned long *flags);
459 void lprocfs_stats_unlock(struct lprocfs_stats *stats,
460                           enum lprocfs_stats_lock_ops opc,
461                           unsigned long *flags);
462
463 static inline unsigned int
464 lprocfs_stats_counter_size(struct lprocfs_stats *stats)
465 {
466         unsigned int percpusize;
467
468         percpusize = offsetof(struct lprocfs_percpu, lp_cntr[stats->ls_num]);
469
470         /* irq safe stats need lc_array_sum[1] */
471         if ((stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE) != 0)
472                 percpusize += stats->ls_num * sizeof(__s64);
473
474         if ((stats->ls_flags & LPROCFS_STATS_FLAG_NOPERCPU) == 0)
475                 percpusize = L1_CACHE_ALIGN(percpusize);
476
477         return percpusize;
478 }
479
480 static inline struct lprocfs_counter *
481 lprocfs_stats_counter_get(struct lprocfs_stats *stats, unsigned int cpuid,
482                           int index)
483 {
484         struct lprocfs_counter *cntr;
485
486         cntr = &stats->ls_percpu[cpuid]->lp_cntr[index];
487
488         if ((stats->ls_flags & LPROCFS_STATS_FLAG_IRQ_SAFE) != 0)
489                 cntr = (void *)cntr + index * sizeof(__s64);
490
491         return cntr;
492 }
493
494 /* Two optimized LPROCFS counter increment functions are provided:
495  *     lprocfs_counter_incr(cntr, value) - optimized for by-one counters
496  *     lprocfs_counter_add(cntr) - use for multi-valued counters
497  * Counter data layout allows config flag, counter lock and the
498  * count itself to reside within a single cache line.
499  */
500
501 extern void lprocfs_counter_add(struct lprocfs_stats *stats, int idx,
502                                 long amount);
503 extern void lprocfs_counter_sub(struct lprocfs_stats *stats, int idx,
504                                 long amount);
505
506 #define lprocfs_counter_incr(stats, idx) \
507         lprocfs_counter_add(stats, idx, 1)
508 #define lprocfs_counter_decr(stats, idx) \
509         lprocfs_counter_sub(stats, idx, 1)
510
511 extern __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
512                                  struct lprocfs_counter_header *header,
513                                  enum lprocfs_stats_flags flags,
514                                  enum lprocfs_fields_flags field);
515 u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
516                             enum lprocfs_fields_flags field);
517
518 extern struct lprocfs_stats *
519 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags);
520 extern void lprocfs_clear_stats(struct lprocfs_stats *stats);
521 extern void lprocfs_free_stats(struct lprocfs_stats **stats);
522 extern void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats);
523 extern int lprocfs_alloc_obd_stats(struct obd_device *obd,
524                                    unsigned int num_stats);
525 extern int lprocfs_alloc_md_stats(struct obd_device *obd,
526                                   unsigned int num_private_stats);
527 extern void lprocfs_counter_init(struct lprocfs_stats *stats, int index,
528                                  unsigned conf, const char *name,
529                                  const char *units);
530 extern void lprocfs_free_obd_stats(struct obd_device *obd);
531 extern void lprocfs_free_md_stats(struct obd_device *obd);
532 struct obd_export;
533 struct nid_stat;
534 extern int lprocfs_add_clear_entry(struct obd_device *obd,
535                                    struct proc_dir_entry *entry);
536 #ifdef HAVE_SERVER_SUPPORT
537 extern int lprocfs_exp_setup(struct obd_export *exp, lnet_nid_t *peer_nid);
538 extern int lprocfs_exp_cleanup(struct obd_export *exp);
539 struct dentry *ldebugfs_add_symlink(const char *name, const char *target,
540                                     const char *format, ...);
541 #else
542 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
543 { return 0; }
544 #endif
545 extern struct proc_dir_entry *
546 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
547                    void *data, const struct proc_ops *ops);
548 extern struct proc_dir_entry *
549 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
550                     const char *format, ...);
551 extern void lprocfs_free_per_client_stats(struct obd_device *obd);
552 #ifdef HAVE_SERVER_SUPPORT
553 extern ssize_t
554 lprocfs_nid_stats_clear_seq_write(struct file *file, const char __user *buffer,
555                                         size_t count, loff_t *off);
556 extern int lprocfs_nid_stats_clear_seq_show(struct seq_file *file, void *data);
557 #endif
558 extern int lprocfs_register_stats(struct proc_dir_entry *root, const char *name,
559                                   struct lprocfs_stats *stats);
560 extern const struct file_operations ldebugfs_stats_seq_fops;
561
562 /* lprocfs_status.c */
563 extern void ldebugfs_add_vars(struct dentry *parent, struct ldebugfs_vars *var,
564                               void *data);
565 extern struct dentry *ldebugfs_register(const char *name,
566                                         struct dentry *parent,
567                                         struct ldebugfs_vars *list,
568                                         void *data);
569 extern int lprocfs_add_vars(struct proc_dir_entry *root,
570                             struct lprocfs_vars *var, void *data);
571
572 extern struct proc_dir_entry *
573 lprocfs_register(const char *name, struct proc_dir_entry *parent,
574                  struct lprocfs_vars *list, void *data);
575
576 extern void lprocfs_remove(struct proc_dir_entry **root);
577 extern void lprocfs_remove_proc_entry(const char *name,
578                                       struct proc_dir_entry *parent);
579 extern int lprocfs_obd_setup(struct obd_device *obd, bool uuid_only);
580 extern int lprocfs_obd_cleanup(struct obd_device *obd);
581
582 extern int lprocfs_seq_create(struct proc_dir_entry *parent, const char *name,
583                               mode_t mode, const struct proc_ops *seq_fops,
584                               void *data);
585 extern int lprocfs_obd_seq_create(struct obd_device *obd, const char *name,
586                                   mode_t mode, const struct proc_ops *seq_fops,
587                                   void *data);
588 extern void lprocfs_stats_header(struct seq_file *seq, ktime_t now,
589                                  ktime_t ts_init, int width, const char *colon,
590                                  bool show_units);
591
592 /* Generic callbacks */
593 extern int lprocfs_uuid_seq_show(struct seq_file *m, void *data);
594 extern int lprocfs_server_uuid_seq_show(struct seq_file *m, void *data);
595 ssize_t conn_uuid_show(struct kobject *kobj, struct attribute *attr, char *buf);
596 extern int lprocfs_import_seq_show(struct seq_file *m, void *data);
597 extern int lprocfs_state_seq_show(struct seq_file *m, void *data);
598 extern int lprocfs_connect_flags_seq_show(struct seq_file *m, void *data);
599 #ifdef HAVE_SERVER_SUPPORT
600 ssize_t num_exports_show(struct kobject *kobj, struct attribute *attr,
601                          char *buf);
602 #endif
603 struct adaptive_timeout;
604 extern int lprocfs_at_hist_helper(struct seq_file *m,
605                                   struct adaptive_timeout *at);
606 extern int lprocfs_timeouts_seq_show(struct seq_file *m, void *data);
607 extern ssize_t
608 lprocfs_timeouts_seq_write(struct file *file, const char __user *buffer,
609                            size_t count, loff_t *off);
610 #ifdef HAVE_SERVER_SUPPORT
611 extern ssize_t
612 lprocfs_evict_client_seq_write(struct file *file, const char __user *buffer,
613                                 size_t count, loff_t *off);
614 #endif
615 ssize_t ping_store(struct kobject *kobj, struct attribute *attr,
616                    const char *buffer, size_t count);
617 ssize_t ping_show(struct kobject *kobj, struct attribute *attr,
618                   char *buffer);
619
620 extern ssize_t
621 ldebugfs_import_seq_write(struct file *file, const char __user *buffer,
622                           size_t count, loff_t *off);
623 static inline ssize_t
624 lprocfs_import_seq_write(struct file *file, const char __user *buffer,
625                          size_t count, loff_t *off)
626 {
627         return ldebugfs_import_seq_write(file, buffer, count, off);
628 }
629
630 extern int lprocfs_pinger_recov_seq_show(struct seq_file *m, void *data);
631 extern ssize_t
632 lprocfs_pinger_recov_seq_write(struct file *file, const char __user *buffer,
633                                size_t count, loff_t *off);
634
635 int string_to_size(u64 *size, const char *buffer, size_t count);
636 int sysfs_memparse(const char *buffer, size_t count, u64 *val,
637                     const char *defunit);
638 char *lprocfs_strnstr(const char *s1, const char *s2, size_t len);
639 char *lprocfs_find_named_value(const char *buffer, const char *name,
640                                 size_t *count);
641 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value);
642 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value);
643 void lprocfs_oh_clear(struct obd_histogram *oh);
644 unsigned long lprocfs_oh_sum(struct obd_histogram *oh);
645
646 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
647                            struct lprocfs_counter *cnt);
648
649 #ifdef HAVE_SERVER_SUPPORT
650 /* lprocfs_status.c: recovery status */
651 int lprocfs_recovery_status_seq_show(struct seq_file *m, void *data);
652
653 /* lprocfs_status.c: hash statistics */
654 int lprocfs_hash_seq_show(struct seq_file *m, void *data);
655
656 /* lprocfs_status.c: IR factor */
657 ssize_t ir_factor_show(struct kobject *kobj, struct attribute *attr,
658                        char *buf);
659 ssize_t ir_factor_store(struct kobject *kobj, struct attribute *attr,
660                         const char *buffer, size_t count);
661 #endif
662
663 /* lprocfs_status.c: dump pages on cksum error */
664 int lprocfs_checksum_dump_seq_show(struct seq_file *m, void *data);
665 ssize_t
666 lprocfs_checksum_dump_seq_write(struct file *file, const char __user *buffer,
667                                 size_t count, loff_t *off);
668
669 extern int lprocfs_single_release(struct inode *, struct file *);
670 extern int lprocfs_seq_release(struct inode *, struct file *);
671
672 /* You must use these macros when you want to refer to
673  * the import in a client obd_device for a lprocfs entry
674  * Note that it is not safe to 'goto', 'return' or 'break'
675  * out of the body of this statement.  It *IS* safe to
676  * 'goto' the a label inside the statement, or to 'continue'
677  * to get out of the statement.
678  */
679
680 #define with_imp_locked_nested(__obd, __imp, __rc, __nest)              \
681         for (down_read_nested(&(__obd)->u.cli.cl_sem, __nest),          \
682              __imp = (__obd)->u.cli.cl_import,                          \
683              __rc = __imp ? 0 : -ENODEV;                                \
684              __imp ? 1 : (up_read(&(__obd)->u.cli.cl_sem), 0);          \
685              __imp = NULL)
686
687 #define with_imp_locked(__obd, __imp, __rc)     \
688         with_imp_locked_nested(__obd, __imp, __rc, 0)
689
690 /* write the name##_seq_show function, call LDEBUGFS_SEQ_FOPS_RO for read-only
691  * debugfs entries; otherwise, you will define name##_seq_write function also
692  * for a read-write debugfs entry, and then call LDEBUGFS_SEQ_FOPS instead.
693  * Finally, call debugfs_create_file(filename, 0444, obd, data, &name#_fops);
694  */
695 #define __LDEBUGFS_SEQ_FOPS(name, custom_seq_write)                     \
696 static int name##_single_open(struct inode *inode, struct file *file)   \
697 {                                                                       \
698         return single_open(file, name##_seq_show, inode->i_private);    \
699 }                                                                       \
700 static const struct file_operations name##_fops = {                     \
701         .owner   = THIS_MODULE,                                         \
702         .open    = name##_single_open,                                  \
703         .read    = seq_read,                                            \
704         .write   = custom_seq_write,                                    \
705         .llseek  = seq_lseek,                                           \
706         .release = single_release,                                      \
707 }
708
709 #define LDEBUGFS_SEQ_FOPS_RO(name)      __LDEBUGFS_SEQ_FOPS(name, NULL)
710 #define LDEBUGFS_SEQ_FOPS(name)         __LDEBUGFS_SEQ_FOPS(name, \
711                                                             name##_seq_write)
712
713 #define LDEBUGFS_SEQ_FOPS_RO_TYPE(name, type)                           \
714         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
715         {                                                               \
716                 if (!m->private)                                        \
717                         return -ENODEV;                                 \
718                 return lprocfs_##type##_seq_show(m, m->private);        \
719         }                                                               \
720         LDEBUGFS_SEQ_FOPS_RO(name##_##type)
721
722 #define LDEBUGFS_SEQ_FOPS_RW_TYPE(name, type)                           \
723         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
724         {                                                               \
725                 if (!m->private)                                        \
726                         return -ENODEV;                                 \
727                 return lprocfs_##type##_seq_show(m, m->private);        \
728         }                                                               \
729         static ssize_t name##_##type##_seq_write(struct file *file,     \
730                         const char __user *buffer, size_t count,        \
731                         loff_t *off)                                    \
732         {                                                               \
733                 struct seq_file *seq = file->private_data;              \
734                                                                         \
735                 if (!seq->private)                                      \
736                         return -ENODEV;                                 \
737                 return ldebugfs_##type##_seq_write(file, buffer, count, \
738                                                    seq->private);       \
739         }                                                               \
740         LDEBUGFS_SEQ_FOPS(name##_##type);
741
742 #define LDEBUGFS_FOPS_WR_ONLY(name, type)                               \
743         static ssize_t name##_##type##_write(struct file *file,         \
744                         const char __user *buffer, size_t count,        \
745                         loff_t *off)                                    \
746         {                                                               \
747                 return ldebugfs_##type##_seq_write(file, buffer, count, \
748                                                    off);                \
749         }                                                               \
750         static int name##_##type##_open(struct inode *inode,            \
751                                         struct file *file)              \
752         {                                                               \
753                 return single_open(file, NULL, inode->i_private);       \
754         }                                                               \
755         static const struct file_operations name##_##type##_fops = {    \
756                 .open    = name##_##type##_open,                        \
757                 .write   = name##_##type##_write,                       \
758                 .release = single_release,                              \
759         };
760
761 /* write the name##_seq_show function, call LPROC_SEQ_FOPS_RO for read-only
762  * proc entries; otherwise, you will define name##_seq_write function also for
763  * a read-write proc entry, and then call LPROC_SEQ_FOPS instead. Finally,
764  * call ldebugfs_obd_seq_create(obd, filename, 0444, &name#_fops, data);
765  */
766 #define __LPROC_SEQ_FOPS(name, custom_seq_write)                        \
767 static int name##_single_open(struct inode *inode, struct file *file)   \
768 {                                                                       \
769         return single_open(file, name##_seq_show,                       \
770                            inode->i_private ? inode->i_private :        \
771                                               PDE_DATA(inode));         \
772 }                                                                       \
773 static const struct proc_ops name##_fops = {                            \
774         PROC_OWNER(THIS_MODULE)                                         \
775         .proc_open              = name##_single_open,                   \
776         .proc_read              = seq_read,                             \
777         .proc_write             = custom_seq_write,                     \
778         .proc_lseek             = seq_lseek,                            \
779         .proc_release           = lprocfs_single_release,               \
780 }
781
782 #define LPROC_SEQ_FOPS_RO(name)         __LPROC_SEQ_FOPS(name, NULL)
783 #define LPROC_SEQ_FOPS(name)            __LPROC_SEQ_FOPS(name, name##_seq_write)
784
785 #define LPROC_SEQ_FOPS_RO_TYPE(name, type)                              \
786         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
787         {                                                               \
788                 return lprocfs_##type##_seq_show(m, m->private);        \
789         }                                                               \
790         LPROC_SEQ_FOPS_RO(name##_##type)
791
792 #define LPROC_SEQ_FOPS_RW_TYPE(name, type)                              \
793         static int name##_##type##_seq_show(struct seq_file *m, void *v)\
794         {                                                               \
795                 return lprocfs_##type##_seq_show(m, m->private);        \
796         }                                                               \
797         static ssize_t name##_##type##_seq_write(struct file *file,     \
798                         const char __user *buffer, size_t count,        \
799                         loff_t *off)                                    \
800         {                                                               \
801                 struct seq_file *seq = file->private_data;              \
802                 return lprocfs_##type##_seq_write(file, buffer,         \
803                                                   count, seq->private); \
804         }                                                               \
805         LPROC_SEQ_FOPS(name##_##type);
806
807 #define LPROC_SEQ_FOPS_WR_ONLY(name, type)                              \
808         static ssize_t name##_##type##_write(struct file *file,         \
809                         const char __user *buffer, size_t count,        \
810                         loff_t *off)                                    \
811         {                                                               \
812                 return lprocfs_##type##_seq_write(file, buffer, count, off);\
813         }                                                               \
814         static int name##_##type##_open(struct inode *inode, struct file *file)\
815         {                                                               \
816                 return single_open(file, NULL,                          \
817                                    inode->i_private ? inode->i_private : \
818                                    PDE_DATA(inode));                    \
819         }                                                               \
820         static const struct proc_ops name##_##type##_fops = {           \
821                 .proc_open      = name##_##type##_open,                 \
822                 .proc_write     = name##_##type##_write,                \
823                 .proc_release   = lprocfs_single_release,               \
824         };
825
826 struct lustre_attr {
827         struct attribute attr;
828         ssize_t (*show)(struct kobject *kobj, struct attribute *attr,
829                         char *buf);
830         ssize_t (*store)(struct kobject *kobj, struct attribute *attr,
831                          const char *buf, size_t len);
832 };
833
834 #define LUSTRE_ATTR(name, mode, show, store) \
835 static struct lustre_attr lustre_attr_##name = __ATTR(name, mode, show, store)
836
837 #define LUSTRE_WO_ATTR(name) LUSTRE_ATTR(name, 0200, NULL, name##_store)
838 #define LUSTRE_RO_ATTR(name) LUSTRE_ATTR(name, 0444, name##_show, NULL)
839 #define LUSTRE_RW_ATTR(name) LUSTRE_ATTR(name, 0644, name##_show, name##_store)
840
841 ssize_t lustre_attr_show(struct kobject *kobj, struct attribute *attr,
842                          char *buf);
843 ssize_t lustre_attr_store(struct kobject *kobj, struct attribute *attr,
844                           const char *buf, size_t len);
845
846 extern const struct sysfs_ops lustre_sysfs_ops;
847
848 /* lproc_ptlrpc.c */
849 struct ptlrpc_request;
850 extern void target_print_req(void *seq_file, struct ptlrpc_request *req);
851
852 #ifdef HAVE_SERVER_SUPPORT
853 /* lprocfs_jobstats.c */
854 int lprocfs_job_stats_log(struct obd_device *obd, char *jobid,
855                           int event, long amount);
856 void lprocfs_job_stats_fini(struct obd_device *obd);
857 int lprocfs_job_stats_init(struct obd_device *obd, int cntr_num,
858                            cntr_init_callback fn);
859 ssize_t job_cleanup_interval_show(struct kobject *kobj, struct attribute *attr,
860                                   char *buf);
861 ssize_t job_cleanup_interval_store(struct kobject *kobj,
862                                    struct attribute *attr,
863                                    const char *buffer, size_t count);
864 /* lproc_status_server.c */
865 ssize_t recovery_time_soft_show(struct kobject *kobj, struct attribute *attr,
866                                 char *buf);
867 ssize_t recovery_time_soft_store(struct kobject *kobj,
868                                  struct attribute *attr,
869                                  const char *buffer, size_t count);
870 ssize_t recovery_time_hard_show(struct kobject *kobj, struct attribute *attr,
871                                 char *buf);
872 ssize_t recovery_time_hard_store(struct kobject *kobj,
873                                  struct attribute *attr,
874                                  const char *buffer, size_t count);
875 ssize_t instance_show(struct kobject *kobj, struct attribute *attr,
876                       char *buf);
877 #endif
878 /* lproc_status.c */
879 int lprocfs_obd_max_pages_per_rpc_seq_show(struct seq_file *m, void *data);
880 ssize_t lprocfs_obd_max_pages_per_rpc_seq_write(struct file *file,
881                                                 const char __user *buffer,
882                                                 size_t count, loff_t *off);
883 ssize_t short_io_bytes_show(struct kobject *kobj, struct attribute *attr,
884                             char *buf);
885 ssize_t short_io_bytes_store(struct kobject *kobj, struct attribute *attr,
886                              const char *buffer, size_t count);
887
888 struct root_squash_info;
889 int lprocfs_wr_root_squash(const char __user *buffer, unsigned long count,
890                            struct root_squash_info *squash, char *name);
891 int lprocfs_wr_nosquash_nids(const char __user *buffer, unsigned long count,
892                              struct root_squash_info *squash, char *name);
893
894 #else /* !CONFIG_PROC_FS */
895
896 #define proc_lustre_root NULL
897
898 static inline void lprocfs_counter_add(struct lprocfs_stats *stats,
899                                        int index, long amount)
900 { return; }
901 static inline void lprocfs_counter_incr(struct lprocfs_stats *stats,
902                                         int index)
903 { return; }
904 static inline void lprocfs_counter_sub(struct lprocfs_stats *stats,
905                                        int index, long amount)
906 { return; }
907 static inline void lprocfs_counter_decr(struct lprocfs_stats *stats,
908                                         int index)
909 { return; }
910 static inline void lprocfs_counter_init(struct lprocfs_stats *stats,
911                                         int index, unsigned conf,
912                                         const char *name, const char *units)
913 { return; }
914
915 static inline __u64 lc_read_helper(struct lprocfs_counter *lc,
916                                    enum lprocfs_fields_flags field)
917 { return 0; }
918
919 /* NB: we return !NULL to satisfy error checker */
920 static inline struct lprocfs_stats *
921 lprocfs_alloc_stats(unsigned int num, enum lprocfs_stats_flags flags)
922 { return (struct lprocfs_stats *)1; }
923 static inline void lprocfs_clear_stats(struct lprocfs_stats *stats)
924 { return; }
925 static inline void lprocfs_free_stats(struct lprocfs_stats **stats)
926 { return; }
927 static inline int lprocfs_register_stats(struct proc_dir_entry *root,
928                                          const char *name,
929                                          struct lprocfs_stats *stats)
930 { return 0; }
931 static inline void lprocfs_init_ldlm_stats(struct lprocfs_stats *ldlm_stats)
932 { return; }
933 static inline int lprocfs_alloc_obd_stats(struct obd_device *obd,
934                                           unsigned int num_stats)
935 { return 0; }
936 static inline int lprocfs_alloc_md_stats(struct obd_device *obd,
937                                          unsigned int num_private_stats)
938 { return 0; }
939 static inline void lprocfs_free_obd_stats(struct obd_device *obd)
940 { return; }
941 static inline void lprocfs_free_md_stats(struct obd_device *obd)
942 { return; }
943
944 struct obd_export;
945 static inline int lprocfs_add_clear_entry(struct obd_export *exp)
946 { return 0; }
947 static inline void lprocfs_free_per_client_stats(struct obd_device *obd)
948 { return; }
949 #ifdef HAVE_SERVER_SUPPORT
950 static inline
951 ssize_t lprocfs_nid_stats_seq_write(struct file *file,
952                                     const char __user *buffer,
953                                     size_t count, loff_t *off)
954 {return 0;}
955 static inline
956 int lprocfs_nid_stats_clear_seq_show(struct seq_file *m, void *data)
957 {return 0;}
958 static inline int lprocfs_exp_setup(struct obd_export *exp,lnet_nid_t *peer_nid)
959 { return 0; }
960 #endif
961 static inline int lprocfs_exp_cleanup(struct obd_export *exp)
962 { return 0; }
963 static inline struct proc_dir_entry *
964 lprocfs_add_simple(struct proc_dir_entry *root, char *name,
965                    void *data, const struct file_operations *fops)
966 {return 0; }
967 static inline struct proc_dir_entry *
968 lprocfs_add_symlink(const char *name, struct proc_dir_entry *parent,
969                     const char *format, ...)
970 {return NULL; }
971 static inline int lprocfs_add_vars(struct proc_dir_entry *root,
972                                    struct lprocfs_vars *var, void *data)
973 { return 0; }
974 static inline struct proc_dir_entry *
975 lprocfs_register(const char *name, struct proc_dir_entry *parent,
976                  struct lprocfs_vars *list, void *data)
977 { return NULL; }
978 static inline void lprocfs_remove(struct proc_dir_entry **root)
979 { return; }
980 static inline void lprocfs_remove_proc_entry(const char *name,
981                                              struct proc_dir_entry *parent)
982 { return; }
983 static inline int lprocfs_obd_setup(struct obd_device *obd, bool uuid_only)
984 { return 0; }
985 static inline int lprocfs_obd_cleanup(struct obd_device *obd)
986 { return 0; }
987 static inline int lprocfs_uuid_seq_show(struct seq_file *m, void *data)
988 { return 0; }
989 static inline int lprocfs_server_seq_show(struct seq_file *m, void *data)
990 { return 0; }
991 static inline int lprocfs_import_seq_show(struct seq_file *m, void *data)
992 { return 0; }
993 static inline int lprocfs_state_seq_show(struct seq_file *m, void *data)
994 { return 0; }
995 static inline int lprocfs_connect_flags_seq_show(struct seq_file *m, void *data)
996 { return 0; }
997 #ifdef HAVE_SERVER_SUPPORT
998 static inline int lprocfs_num_exports_seq_show(struct seq_file *m, void *data)
999 { return 0; }
1000 #endif
1001 struct adaptive_timeout;
1002 static inline int lprocfs_at_hist_helper(struct seq_file *m,
1003                                          struct adaptive_timeout *at)
1004 { return 0; }
1005 static inline int lprocfs_timeouts_seq_show(struct seq_file *m, void *data)
1006 { return 0; }
1007 static inline ssize_t
1008 lprocfs_timeouts_seq_write(struct file *file, const char __user *buffer,
1009                            size_t count, loff_t *off)
1010 { return 0; }
1011 #ifdef HAVE_SERVER_SUPPORT
1012 static inline ssize_t
1013 lprocfs_evict_client_seq_write(struct file *file, const char __user *buffer,
1014                                size_t count, loff_t *off)
1015 { return 0; }
1016 #endif
1017 static inline ssize_t
1018 lprocfs_ping_seq_write(struct file *file, const char __user *buffer,
1019                        size_t count, loff_t *off)
1020 { return 0; }
1021 static inline ssize_t
1022 ldebugfs_import_seq_write(struct file *file, const char __user *buffer,
1023                           size_t count, loff_t *off)
1024 { return 0; }
1025 static inline ssize_t
1026 lprocfs_import_seq_write(struct file *file, const char __user *buffer,
1027                          size_t count, loff_t *off)
1028 { return 0; }
1029 static inline int
1030 lprocfs_pinger_recov_seq_show(struct seq_file *m, void *data)
1031 { return 0; }
1032 static inline ssize_t
1033 lprocfs_pinger_recov_seq_write(struct file *file, const char __user *buffer,
1034                                size_t count, loff_t *off)
1035 { return 0; }
1036
1037 /* Statfs helpers */
1038 static inline
1039 int lprocfs_blksize_seq_show(struct seq_file *m, void *data)
1040 { return 0; }
1041 static inline
1042 int lprocfs_kbytestotal_seq_show(struct seq_file *m, void *data)
1043 { return 0; }
1044 static inline
1045 int lprocfs_kbytesfree_seq_show(struct seq_file *m, void *data)
1046 { return 0; }
1047 static inline
1048 int lprocfs_kbytesavail_seq_show(struct seq_file *m, void *data)
1049 { return 0; }
1050 static inline
1051 int lprocfs_filestotal_seq_show(struct seq_file *m, void *data)
1052 { return 0; }
1053 static inline
1054 int lprocfs_filesfree_seq_show(struct seq_file *m, void *data)
1055 { return 0; }
1056 static inline
1057 void lprocfs_oh_tally(struct obd_histogram *oh, unsigned int value)
1058 { return; }
1059 static inline
1060 void lprocfs_oh_tally_log2(struct obd_histogram *oh, unsigned int value)
1061 { return; }
1062 static inline
1063 void lprocfs_oh_clear(struct obd_histogram *oh)
1064 { return; }
1065 static inline
1066 unsigned long lprocfs_oh_sum(struct obd_histogram *oh)
1067 { return 0; }
1068 static inline
1069 void lprocfs_stats_collect(struct lprocfs_stats *stats, int idx,
1070                            struct lprocfs_counter *cnt)
1071 { return; }
1072 static inline
1073 u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
1074                             enum lprocfs_fields_flags field)
1075 { return (__u64)0; }
1076
1077 #define LPROC_SEQ_FOPS_RO(name)
1078 #define LPROC_SEQ_FOPS(name)
1079 #define LPROC_SEQ_FOPS_RO_TYPE(name, type)
1080 #define LPROC_SEQ_FOPS_RW_TYPE(name, type)
1081 #define LPROC_SEQ_FOPS_WR_ONLY(name, type)
1082
1083 /* lprocfs_jobstats.c */
1084 static inline
1085 int lprocfs_job_stats_log(struct obd_device *obd, char *jobid, int event,
1086                           long amount)
1087 { return 0; }
1088 static inline
1089 void lprocfs_job_stats_fini(struct obd_device *obd)
1090 { return; }
1091 static inline
1092 int lprocfs_job_stats_init(struct obd_device *obd, int cntr_num,
1093                            cntr_init_callback fn)
1094 { return 0; }
1095
1096
1097 /* lproc_ptlrpc.c */
1098 #define target_print_req NULL
1099
1100 #endif /* CONFIG_PROC_FS */
1101
1102 #endif /* LPROCFS_STATUS_H */