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