2 * linux/include/linux/sunrpc/stats.h
4 * Client statistics collection for SUN RPC
6 * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
9 #ifndef _LINUX_SUNRPC_STATS_H
10 #define _LINUX_SUNRPC_STATS_H
12 #include <linux/proc_fs.h>
15 struct rpc_program * program;
29 struct svc_program * program;
41 void rpc_proc_init(void);
42 void rpc_proc_exit(void);
44 void rpc_modcount(struct inode *, int);
48 struct proc_dir_entry * rpc_proc_register(struct rpc_stat *);
49 void rpc_proc_unregister(const char *);
50 void rpc_proc_zero(struct rpc_program *);
51 struct proc_dir_entry * svc_proc_register(struct svc_stat *,
52 const struct file_operations *);
53 void svc_proc_unregister(const char *);
55 void svc_seq_show(struct seq_file *,
56 const struct svc_stat *);
58 extern struct proc_dir_entry *proc_net_rpc;
62 static inline struct proc_dir_entry *rpc_proc_register(struct rpc_stat *s) { return NULL; }
63 static inline void rpc_proc_unregister(const char *p) {}
64 static inline void rpc_proc_zero(struct rpc_program *p) {}
66 static inline struct proc_dir_entry *svc_proc_register(struct svc_stat *s,
67 const struct file_operations *f) { return NULL; }
68 static inline void svc_proc_unregister(const char *p) {}
70 static inline void svc_seq_show(struct seq_file *seq,
71 const struct svc_stat *st) {}
73 #define proc_net_rpc NULL
77 #endif /* _LINUX_SUNRPC_STATS_H */