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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/nfsd/stats.h
  3.  *
  4.  * Statistics for NFS server.
  5.  *
  6.  * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
  7.  */
  8. #ifndef LINUX_NFSD_STATS_H
  9. #define LINUX_NFSD_STATS_H
  10. struct nfsd_stats {
  11. unsigned int rchits; /* repcache hits */
  12. unsigned int rcmisses; /* repcache hits */
  13. unsigned int rcnocache; /* uncached reqs */
  14. unsigned int fh_stale; /* FH stale error */
  15. unsigned int fh_lookup; /* dentry cached */
  16. unsigned int fh_anon; /* anon file dentry returned */
  17. unsigned int fh_nocache_dir; /* filehandle not found in dcache */
  18. unsigned int fh_nocache_nondir; /* filehandle not found in dcache */
  19. unsigned int io_read; /* bytes returned to read requests */
  20. unsigned int io_write; /* bytes passed in write requests */
  21. unsigned int th_cnt; /* number of available threads */
  22. unsigned int th_usage[10]; /* number of ticks during which n perdeciles
  23.  * of available threads were in use */
  24. unsigned int th_fullcnt; /* number of times last free thread was used */
  25. unsigned int ra_size; /* size of ra cache */
  26. unsigned int ra_depth[11]; /* number of times ra entry was found that deep
  27.  * in the cache (10percentiles). [10] = not found */
  28. };
  29. /* thread usage wraps very million seconds (approx one fortnight) */
  30. #define NFSD_USAGE_WRAP (HZ*1000000)
  31. #ifdef __KERNEL__
  32. extern struct nfsd_stats nfsdstats;
  33. extern struct svc_stat nfsd_svcstats;
  34. void nfsd_stat_init(void);
  35. void nfsd_stat_shutdown(void);
  36. #endif /* __KERNEL__ */
  37. #endif /* LINUX_NFSD_STATS_H */