stats.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

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. int rpc_proc_read(char *, char **, off_t, int,
  44. int *, void *);
  45. void rpc_proc_zero(struct rpc_program *);
  46. struct proc_dir_entry * svc_proc_register(struct svc_stat *);
  47. void svc_proc_unregister(const char *);
  48. int svc_proc_read(char *, char **, off_t, int,
  49. int *, void *);
  50. void svc_proc_zero(struct svc_program *);
  51. #else
  52. static inline void svc_proc_unregister(const char *p) {}
  53. static inline struct proc_dir_entry*svc_proc_register(struct svc_stat *s)
  54. {
  55. return NULL;
  56. }
  57. static inline int svc_proc_read(char *a, char **b, off_t c, int d, int *e, void *f)
  58. {
  59. return 0;
  60. }
  61. #endif
  62. #endif /* _LINUX_SUNRPC_STATS_H */