stats.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/linux/sunrpc/stats.h
  3.  *
  4.  * Client statistics collection for SUN RPC
  5.  *
  6.  * Copyright (C) 1996 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef _LINUX_SUNRPC_STATS_H
  9. #define _LINUX_SUNRPC_STATS_H
  10. #include <linux/config.h>
  11. #include <linux/proc_fs.h>
  12. struct rpc_stat {
  13. struct rpc_program * program;
  14. unsigned int netcnt,
  15. netudpcnt,
  16. nettcpcnt,
  17. nettcpconn,
  18. netreconn;
  19. unsigned int rpccnt,
  20. rpcretrans,
  21. rpcauthrefresh,
  22. rpcgarbage;
  23. };
  24. struct svc_stat {
  25. struct svc_program * program;
  26. unsigned int netcnt,
  27. netudpcnt,
  28. nettcpcnt,
  29. nettcpconn;
  30. unsigned int rpccnt,
  31. rpcbadfmt,
  32. rpcbadauth,
  33. rpcbadclnt;
  34. };
  35. void rpc_proc_init(void);
  36. void rpc_proc_exit(void);
  37. #ifdef MODULE
  38. void rpc_modcount(struct inode *, int);
  39. #endif
  40. #ifdef CONFIG_PROC_FS
  41. struct proc_dir_entry * rpc_proc_register(struct rpc_stat *);
  42. void rpc_proc_unregister(const char *);
  43. void rpc_proc_zero(struct rpc_program *);
  44. struct proc_dir_entry * svc_proc_register(struct svc_stat *,
  45.   struct file_operations *);
  46. void svc_proc_unregister(const char *);
  47. void svc_seq_show(struct seq_file *,
  48.      const struct svc_stat *);
  49. extern struct proc_dir_entry *proc_net_rpc;
  50. #else
  51. static inline struct proc_dir_entry *rpc_proc_register(struct rpc_stat *s) { return NULL; }
  52. static inline void rpc_proc_unregister(const char *p) {}
  53. static inline void rpc_proc_zero(struct rpc_program *p) {}
  54. static inline struct proc_dir_entry *svc_proc_register(struct svc_stat *s,
  55.        struct file_operations *f) { return NULL; }
  56. static inline void svc_proc_unregister(const char *p) {}
  57. static inline void svc_seq_show(struct seq_file *seq,
  58. const struct svc_stat *st) {}
  59. #define proc_net_rpc NULL
  60. #endif
  61. #endif /* _LINUX_SUNRPC_STATS_H */