Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
93c5435c
Commit
93c5435c
authored
Oct 07, 2002
by
Dave Jones
Committed by
Linus Torvalds
Oct 07, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Updated proc docs from 2.4
parent
cb939c04
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
18 deletions
+8
-18
Documentation/filesystems/proc.txt
Documentation/filesystems/proc.txt
+8
-18
No files found.
Documentation/filesystems/proc.txt
View file @
93c5435c
...
@@ -728,36 +728,26 @@ allocated file handles come close to the maximum, but the number of actually
...
@@ -728,36 +728,26 @@ allocated file handles come close to the maximum, but the number of actually
used ones is far behind, you've encountered a peak in your usage of file
used ones is far behind, you've encountered a peak in your usage of file
handles and you don't need to increase the maximum.
handles and you don't need to increase the maximum.
inode-state, inode-nr and inode-max
inode-state and inode-nr
-----------------------------------
------------------------
As with file handles, the kernel allocates the inode structures dynamically,
but can't free them yet.
The value in inode-max denotes the maximum number of inode handlers. This
value should be 3 to 4 times larger than the value in file-max, since stdin,
stdout, and network sockets also need an inode struct to handle them. If you
regularly run out of inodes, you should increase this value.
The file inode-nr contains the first two items from inode-state, so we'll skip
The file inode-nr contains the first two items from inode-state, so we'll skip
to that file...
to that file...
inode-state contains t
hree actual numbers and four
dummy values. The numbers
inode-state contains t
wo actual numbers and five
dummy values. The numbers
are nr_inodes
, nr_free_inodes, and preshrink
(in order of appearance).
are nr_inodes
and nr_free_inodes
(in order of appearance).
nr_inodes
nr_inodes
~~~~~~~~~
~~~~~~~~~
Denotes the number of inodes the system has allocated. This
can be slightly
Denotes the number of inodes the system has allocated. This
number will
more than inode-max because Linux allocates them one pageful at a time
.
grow and shrink dynamically
.
nr_free_inodes
nr_free_inodes
--------------
--------------
Represents the number of free inodes and preshrink is nonzero when nr_inodes
Represents the number of free inodes. Ie. The number of inuse inodes is
is greater than inode-max and the system needs to prune the inode list instead
(nr_inodes - nr_free_inodes).
of allocating more.
super-nr and super-max
super-nr and super-max
----------------------
----------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment