fs.txt 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. - suid_dumpable
  24. - super-max
  25. - super-nr
  26. Documentation for the files in /proc/sys/fs/binfmt_misc is
  27. in Documentation/binfmt_misc.txt.
  28. ==============================================================
  29. dentry-state:
  30. From linux/fs/dentry.c:
  31. --------------------------------------------------------------
  32. struct {
  33. int nr_dentry;
  34. int nr_unused;
  35. int age_limit; /* age in seconds */
  36. int want_pages; /* pages requested by system */
  37. int dummy[2];
  38. } dentry_stat = {0, 0, 45, 0,};
  39. --------------------------------------------------------------
  40. Dentries are dynamically allocated and deallocated, and
  41. nr_dentry seems to be 0 all the time. Hence it's safe to
  42. assume that only nr_unused, age_limit and want_pages are
  43. used. Nr_unused seems to be exactly what its name says.
  44. Age_limit is the age in seconds after which dcache entries
  45. can be reclaimed when memory is short and want_pages is
  46. nonzero when shrink_dcache_pages() has been called and the
  47. dcache isn't pruned yet.
  48. ==============================================================
  49. dquot-max & dquot-nr:
  50. The file dquot-max shows the maximum number of cached disk
  51. quota entries.
  52. The file dquot-nr shows the number of allocated disk quota
  53. entries and the number of free disk quota entries.
  54. If the number of free cached disk quotas is very low and
  55. you have some awesome number of simultaneous system users,
  56. you might want to raise the limit.
  57. ==============================================================
  58. file-max & file-nr:
  59. The kernel allocates file handles dynamically, but as yet it
  60. doesn't free them again.
  61. The value in file-max denotes the maximum number of file-
  62. handles that the Linux kernel will allocate. When you get lots
  63. of error messages about running out of file handles, you might
  64. want to increase this limit.
  65. The three values in file-nr denote the number of allocated
  66. file handles, the number of unused file handles and the maximum
  67. number of file handles. When the allocated file handles come
  68. close to the maximum, but the number of unused file handles is
  69. significantly greater than 0, you've encountered a peak in your
  70. usage of file handles and you don't need to increase the maximum.
  71. ==============================================================
  72. inode-max, inode-nr & inode-state:
  73. As with file handles, the kernel allocates the inode structures
  74. dynamically, but can't free them yet.
  75. The value in inode-max denotes the maximum number of inode
  76. handlers. This value should be 3-4 times larger than the value
  77. in file-max, since stdin, stdout and network sockets also
  78. need an inode struct to handle them. When you regularly run
  79. out of inodes, you need to increase this value.
  80. The file inode-nr contains the first two items from
  81. inode-state, so we'll skip to that file...
  82. Inode-state contains three actual numbers and four dummies.
  83. The actual numbers are, in order of appearance, nr_inodes,
  84. nr_free_inodes and preshrink.
  85. Nr_inodes stands for the number of inodes the system has
  86. allocated, this can be slightly more than inode-max because
  87. Linux allocates them one pageful at a time.
  88. Nr_free_inodes represents the number of free inodes (?) and
  89. preshrink is nonzero when the nr_inodes > inode-max and the
  90. system needs to prune the inode list instead of allocating
  91. more.
  92. ==============================================================
  93. overflowgid & overflowuid:
  94. Some filesystems only support 16-bit UIDs and GIDs, although in Linux
  95. UIDs and GIDs are 32 bits. When one of these filesystems is mounted
  96. with writes enabled, any UID or GID that would exceed 65535 is translated
  97. to a fixed value before being written to disk.
  98. These sysctls allow you to change the value of the fixed UID and GID.
  99. The default is 65534.
  100. ==============================================================
  101. suid_dumpable:
  102. This value can be used to query and set the core dump mode for setuid
  103. or otherwise protected/tainted binaries. The modes are
  104. 0 - (default) - traditional behaviour. Any process which has changed
  105. privilege levels or is execute only will not be dumped
  106. 1 - (debug) - all processes dump core when possible. The core dump is
  107. owned by the current user and no security is applied. This is
  108. intended for system debugging situations only. Ptrace is unchecked.
  109. 2 - (suidsafe) - any binary which normally would not be dumped is dumped
  110. readable by root only. This allows the end user to remove
  111. such a dump but not access it directly. For security reasons
  112. core dumps in this mode will not overwrite one another or
  113. other files. This mode is appropriate when adminstrators are
  114. attempting to debug problems in a normal environment.
  115. ==============================================================
  116. super-max & super-nr:
  117. These numbers control the maximum number of superblocks, and
  118. thus the maximum number of mounted filesystems the kernel
  119. can have. You only need to increase super-max if you need to
  120. mount more filesystems than the current value in super-max
  121. allows you to.
  122. ==============================================================
  123. aio-nr & aio-max-nr:
  124. aio-nr shows the current system-wide number of asynchronous io
  125. requests. aio-max-nr allows you to change the maximum value
  126. aio-nr can grow to.
  127. ==============================================================