stats.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/nfsd/stats.c
  3.  *
  4.  * procfs-based user access to knfsd statistics
  5.  *
  6.  * /proc/net/rpc/nfsd
  7.  *
  8.  * Format:
  9.  * rc <hits> <misses> <nocache>
  10.  * Statistsics for the reply cache
  11.  * fh <stale> <total-lookups> <anonlookups> <dir-not-in-dcache> <nondir-not-in-dcache>
  12.  * statistics for filehandle lookup
  13.  * io <bytes-read> <bytes-writtten>
  14.  * statistics for IO throughput
  15.  * th <threads> <fullcnt> <10%-20%> <20%-30%> ... <90%-100%> <100%> 
  16.  * time (seconds) when nfsd thread usage above thresholds
  17.  * and number of times that all threads were in use
  18.  * ra cache-size  <10%  <20%  <30% ... <100% not-found
  19.  * number of times that read-ahead entry was found that deep in
  20.  * the cache.
  21.  * plus generic RPC stats (see net/sunrpc/stats.c)
  22.  *
  23.  * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
  24.  */
  25. #include <linux/kernel.h>
  26. #include <linux/sched.h>
  27. #include <linux/proc_fs.h>
  28. #include <linux/stat.h>
  29. #define __NO_VERSION__
  30. #include <linux/module.h>
  31. #include <linux/sunrpc/svc.h>
  32. #include <linux/sunrpc/stats.h>
  33. #include <linux/nfsd/nfsd.h>
  34. #include <linux/nfsd/stats.h>
  35. struct nfsd_stats nfsdstats;
  36. struct svc_stat nfsd_svcstats = { &nfsd_program, };
  37. static int
  38. nfsd_proc_read(char *buffer, char **start, off_t offset, int count,
  39. int *eof, void *data)
  40. {
  41. int len;
  42. int i;
  43. len = sprintf(buffer, "rc %u %u %unfh %u %u %u %u %unio %u %un",
  44.       nfsdstats.rchits,
  45.       nfsdstats.rcmisses,
  46.       nfsdstats.rcnocache,
  47.       nfsdstats.fh_stale,
  48.       nfsdstats.fh_lookup,
  49.       nfsdstats.fh_anon,
  50.       nfsdstats.fh_nocache_dir,
  51.       nfsdstats.fh_nocache_nondir,
  52.       nfsdstats.io_read,
  53.       nfsdstats.io_write);
  54. /* thread usage: */
  55. len += sprintf(buffer+len, "th %u %u", nfsdstats.th_cnt, nfsdstats.th_fullcnt);
  56. for (i=0; i<10; i++) {
  57. unsigned int jifs = nfsdstats.th_usage[i];
  58. unsigned int sec = jifs / HZ, msec = (jifs % HZ)*1000/HZ;
  59. len += sprintf(buffer+len, " %u.%03u", sec, msec);
  60. }
  61. /* newline and ra-cache */
  62. len += sprintf(buffer+len, "nra %u", nfsdstats.ra_size);
  63. for (i=0; i<11; i++)
  64. len += sprintf(buffer+len, " %u", nfsdstats.ra_depth[i]);
  65. len += sprintf(buffer+len, "n");
  66. /* Assume we haven't hit EOF yet. Will be set by svc_proc_read. */
  67. *eof = 0;
  68. /*
  69.  * Append generic nfsd RPC statistics if there's room for it.
  70.  */
  71. if (len <= offset) {
  72. len = svc_proc_read(buffer, start, offset - len, count,
  73.     eof, data);
  74. return len;
  75. }
  76. if (len < count) {
  77. len += svc_proc_read(buffer + len, start, 0, count - len,
  78.      eof, data);
  79. }
  80. if (offset >= len) {
  81. *start = buffer;
  82. return 0;
  83. }
  84. *start = buffer + offset;
  85. if ((len -= offset) > count)
  86. return count;
  87. return len;
  88. }
  89. void
  90. nfsd_stat_init(void)
  91. {
  92. struct proc_dir_entry *ent;
  93. if ((ent = svc_proc_register(&nfsd_svcstats)) != 0) {
  94. ent->read_proc = nfsd_proc_read;
  95. ent->owner = THIS_MODULE;
  96. }
  97. }
  98. void
  99. nfsd_stat_shutdown(void)
  100. {
  101. svc_proc_unregister("nfsd");
  102. }