diff options
author | Konstantin Khlebnikov <koct9i@gmail.com> | 2016-02-02 19:57:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-02-03 11:28:43 -0500 |
commit | 30bdbb78009e67767983085e302bec6d97afc679 (patch) | |
tree | 8d4084215738d98a6eed66cd7e971e9cca5f279a /Documentation | |
parent | d977d56ce5b3e8842236f2f9e7483d4914c9592e (diff) |
mm: polish virtual memory accounting
* add VM_STACK as alias for VM_GROWSUP/DOWN depending on architecture
* always account VMAs with flag VM_STACK as stack (as it was before)
* cleanup classifying helpers
* update comments and documentation
Signed-off-by: Konstantin Khlebnikov <koct9i@gmail.com>
Tested-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Cc: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/filesystems/proc.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt index eaebf27539f5..843b045b4069 100644 --- a/Documentation/filesystems/proc.txt +++ b/Documentation/filesystems/proc.txt | |||
@@ -240,8 +240,8 @@ Table 1-2: Contents of the status files (as of 4.1) | |||
240 | RssFile size of resident file mappings | 240 | RssFile size of resident file mappings |
241 | RssShmem size of resident shmem memory (includes SysV shm, | 241 | RssShmem size of resident shmem memory (includes SysV shm, |
242 | mapping of tmpfs and shared anonymous mappings) | 242 | mapping of tmpfs and shared anonymous mappings) |
243 | VmData size of data, stack, and text segments | 243 | VmData size of private data segments |
244 | VmStk size of data, stack, and text segments | 244 | VmStk size of stack segments |
245 | VmExe size of text segment | 245 | VmExe size of text segment |
246 | VmLib size of shared library code | 246 | VmLib size of shared library code |
247 | VmPTE size of page table entries | 247 | VmPTE size of page table entries |