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

Linux/Unix编程

开发平台:

Unix_Linux

  1. Documentation for /proc/sys/fs/* kernel version 2.2.10
  2. (c) 1998, 1999,  Rik van Riel <riel@nl.linux.org>
  3. For general info and legal blurb, please look in README.
  4. ==============================================================
  5. This file contains documentation for the sysctl files in
  6. /proc/sys/fs/ and is valid for Linux kernel version 2.2.
  7. The files in this directory can be used to tune and monitor
  8. miscellaneous and general things in the operation of the Linux
  9. kernel. Since some of the files _can_ be used to screw up your
  10. system, it is advisable to read both documentation and source
  11. before actually making adjustments.
  12. Currently, these files are in /proc/sys/fs:
  13. - dentry-state
  14. - dquot-max
  15. - dquot-nr
  16. - file-max
  17. - file-nr
  18. - inode-max
  19. - inode-nr
  20. - inode-state
  21. - overflowuid
  22. - overflowgid
  23. - super-max
  24. - super-nr
  25. Documentation for the files in /proc/sys/fs/binfmt_misc is
  26. in Documentation/binfmt_misc.txt.
  27. ==============================================================
  28. dentry-state:
  29. From linux/fs/dentry.c:
  30. --------------------------------------------------------------
  31. struct {
  32.         int nr_dentry;
  33.         int nr_unused;
  34.         int age_limit;         /* age in seconds */
  35.         int want_pages;        /* pages requested by system */
  36.         int dummy[2];
  37. } dentry_stat = {0, 0, 45, 0,};
  38. -------------------------------------------------------------- 
  39. Dentries are dynamically allocated and deallocated, and
  40. nr_dentry seems to be 0 all the time. Hence it's safe to
  41. assume that only nr_unused, age_limit and want_pages are
  42. used. Nr_unused seems to be exactly what its name says.
  43. Age_limit is the age in seconds after which dcache entries
  44. can be reclaimed when memory is short and want_pages is
  45. nonzero when shrink_dcache_pages() has been called and the
  46. dcache isn't pruned yet.
  47. ==============================================================
  48. dquot-max & dquot-nr:
  49. The file dquot-max shows the maximum number of cached disk
  50. quota entries.
  51. The file dquot-nr shows the number of allocated disk quota
  52. entries and the number of free disk quota entries.
  53. If the number of free cached disk quotas is very low and
  54. you have some awesome number of simultaneous system users,
  55. you might want to raise the limit.
  56. ==============================================================
  57. file-max & file-nr:
  58. The kernel allocates file handles dynamically, but as yet it
  59. doesn't free them again.
  60. The value in file-max denotes the maximum number of file-
  61. handles that the Linux kernel will allocate. When you get lots
  62. of error messages about running out of file handles, you might
  63. want to increase this limit.
  64. The three values in file-nr denote the number of allocated
  65. file handles, the number of used file handles and the maximum
  66. number of file handles. When the allocated file handles come
  67. close to the maximum, but the number of actually used ones is
  68. far behind, you've encountered a peak in your usage of file
  69. handles and you don't need to increase the maximum.
  70. ==============================================================
  71. inode-max, inode-nr & inode-state:
  72. As with file handles, the kernel allocates the inode structures
  73. dynamically, but can't free them yet.
  74. The value in inode-max denotes the maximum number of inode
  75. handlers. This value should be 3-4 times larger than the value
  76. in file-max, since stdin, stdout and network sockets also
  77. need an inode struct to handle them. When you regularly run
  78. out of inodes, you need to increase this value.
  79. The file inode-nr contains the first two items from
  80. inode-state, so we'll skip to that file...
  81. Inode-state contains three actual numbers and four dummies.
  82. The actual numbers are, in order of appearance, nr_inodes,
  83. nr_free_inodes and preshrink.
  84. Nr_inodes stands for the number of inodes the system has
  85. allocated, this can be slightly more than inode-max because
  86. Linux allocates them one pageful at a time.
  87. Nr_free_inodes represents the number of free inodes (?) and
  88. preshrink is nonzero when the nr_inodes > inode-max and the
  89. system needs to prune the inode list instead of allocating
  90. more.
  91. ==============================================================
  92. overflowgid & overflowuid:
  93. Some filesystems only support 16-bit UIDs and GIDs, although in Linux
  94. UIDs and GIDs are 32 bits. When one of these filesystems is mounted
  95. with writes enabled, any UID or GID that would exceed 65535 is translated
  96. to a fixed value before being written to disk.
  97. These sysctls allow you to change the value of the fixed UID and GID.
  98. The default is 65534.
  99. ==============================================================
  100. super-max & super-nr:
  101. These numbers control the maximum number of superblocks, and
  102. thus the maximum number of mounted filesystems the kernel
  103. can have. You only need to increase super-max if you need to
  104. mount more filesystems than the current value in super-max
  105. allows you to.