blob: df3ff2095f9d2decc6846f7286a27702370efbe4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001Documentation for /proc/sys/vm/* kernel version 2.2.10
2 (c) 1998, 1999, Rik van Riel <riel@nl.linux.org>
3
4For general info and legal blurb, please look in README.
5
6==============================================================
7
8This file contains the documentation for the sysctl files in
9/proc/sys/vm and is valid for Linux kernel version 2.2.
10
11The files in this directory can be used to tune the operation
12of the virtual memory (VM) subsystem of the Linux kernel and
13the writeout of dirty data to disk.
14
15Default values and initialization routines for most of these
16files can be found in mm/swap.c.
17
18Currently, these files are in /proc/sys/vm:
19- overcommit_memory
20- page-cluster
21- dirty_ratio
22- dirty_background_ratio
23- dirty_expire_centisecs
24- dirty_writeback_centisecs
25- max_map_count
26- min_free_kbytes
27- laptop_mode
28- block_dump
Andrew Morton9d0243b2006-01-08 01:00:39 -080029- drop-caches
Christoph Lameter17436602006-01-18 17:42:32 -080030- zone_reclaim_mode
Christoph Lameter96146342006-07-03 00:24:13 -070031- min_unmapped_ratio
Christoph Lameter0ff38492006-09-25 23:31:52 -070032- min_slab_ratio
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -070033- panic_on_oom
Eric Parised032182007-06-28 15:55:21 -040034- mmap_min_address
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -070035- numa_zonelist_order
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37==============================================================
38
39dirty_ratio, dirty_background_ratio, dirty_expire_centisecs,
40dirty_writeback_centisecs, vfs_cache_pressure, laptop_mode,
Andrew Morton9d0243b2006-01-08 01:00:39 -080041block_dump, swap_token_timeout, drop-caches:
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43See Documentation/filesystems/proc.txt
44
45==============================================================
46
47overcommit_memory:
48
49This value contains a flag that enables memory overcommitment.
50
51When this flag is 0, the kernel attempts to estimate the amount
52of free memory left when userspace requests more memory.
53
54When this flag is 1, the kernel pretends there is always enough
55memory until it actually runs out.
56
57When this flag is 2, the kernel uses a "never overcommit"
58policy that attempts to prevent any overcommit of memory.
59
60This feature can be very useful because there are a lot of
61programs that malloc() huge amounts of memory "just-in-case"
62and don't use much of it.
63
64The default value is 0.
65
66See Documentation/vm/overcommit-accounting and
67security/commoncap.c::cap_vm_enough_memory() for more information.
68
69==============================================================
70
71overcommit_ratio:
72
73When overcommit_memory is set to 2, the committed address
74space is not permitted to exceed swap plus this percentage
75of physical RAM. See above.
76
77==============================================================
78
79page-cluster:
80
81The Linux VM subsystem avoids excessive disk seeks by reading
82multiple pages on a page fault. The number of pages it reads
83is dependent on the amount of memory in your machine.
84
85The number of pages the kernel reads in at once is equal to
862 ^ page-cluster. Values above 2 ^ 5 don't make much sense
87for swap because we only cluster swap data in 32-page groups.
88
89==============================================================
90
91max_map_count:
92
93This file contains the maximum number of memory map areas a process
94may have. Memory map areas are used as a side-effect of calling
95malloc, directly by mmap and mprotect, and also when loading shared
96libraries.
97
98While most applications need less than a thousand maps, certain
99programs, particularly malloc debuggers, may consume lots of them,
100e.g., up to one or two maps per allocation.
101
102The default value is 65536.
103
104==============================================================
105
106min_free_kbytes:
107
108This is used to force the Linux VM to keep a minimum number
109of kilobytes free. The VM uses this number to compute a pages_min
110value for each lowmem zone in the system. Each lowmem zone gets
111a number of reserved free pages based proportionally on its size.
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800112
113==============================================================
114
115percpu_pagelist_fraction
116
117This is the fraction of pages at most (high mark pcp->high) in each zone that
118are allocated for each per cpu page list. The min value for this is 8. It
119means that we don't allow more than 1/8th of pages in each zone to be
120allocated in any single per_cpu_pagelist. This entry only changes the value
121of hot per cpu pagelists. User can specify a number like 100 to allocate
1221/100th of each zone to each per cpu page list.
123
124The batch value of each per cpu pagelist is also updated as a result. It is
125set to pcp->high/4. The upper limit of batch is (PAGE_SHIFT * 8)
126
127The initial value is zero. Kernel does not use this value at boot time to set
128the high water marks for each per cpu page list.
Christoph Lameter17436602006-01-18 17:42:32 -0800129
130===============================================================
131
132zone_reclaim_mode:
133
Matt LaPlante5d3f0832006-11-30 05:21:10 +0100134Zone_reclaim_mode allows someone to set more or less aggressive approaches to
Christoph Lameter1b2ffb72006-02-01 03:05:34 -0800135reclaim memory when a zone runs out of memory. If it is set to zero then no
136zone reclaim occurs. Allocations will be satisfied from other zones / nodes
137in the system.
138
139This is value ORed together of
140
1411 = Zone reclaim on
1422 = Zone reclaim writes dirty pages out
1434 = Zone reclaim swaps pages
144
145zone_reclaim_mode is set during bootup to 1 if it is determined that pages
146from remote zones will cause a measurable performance reduction. The
Christoph Lameter17436602006-01-18 17:42:32 -0800147page allocator will then reclaim easily reusable pages (those page
Christoph Lameter1b2ffb72006-02-01 03:05:34 -0800148cache pages that are currently not used) before allocating off node pages.
Christoph Lameter17436602006-01-18 17:42:32 -0800149
Christoph Lameter1b2ffb72006-02-01 03:05:34 -0800150It may be beneficial to switch off zone reclaim if the system is
151used for a file server and all of memory should be used for caching files
152from disk. In that case the caching effect is more important than
153data locality.
Christoph Lameter17436602006-01-18 17:42:32 -0800154
Christoph Lameter1b2ffb72006-02-01 03:05:34 -0800155Allowing zone reclaim to write out pages stops processes that are
156writing large amounts of data from dirtying pages on other nodes. Zone
157reclaim will write out dirty pages if a zone fills up and so effectively
158throttle the process. This may decrease the performance of a single process
159since it cannot use all of system memory to buffer the outgoing writes
160anymore but it preserve the memory on other nodes so that the performance
161of other processes running on other nodes will not be affected.
162
163Allowing regular swap effectively restricts allocations to the local
164node unless explicitly overridden by memory policies or cpuset
165configurations.
166
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700167=============================================================
168
Christoph Lameter96146342006-07-03 00:24:13 -0700169min_unmapped_ratio:
170
171This is available only on NUMA kernels.
172
Christoph Lameter0ff38492006-09-25 23:31:52 -0700173A percentage of the total pages in each zone. Zone reclaim will only
Christoph Lameter96146342006-07-03 00:24:13 -0700174occur if more than this percentage of pages are file backed and unmapped.
175This is to insure that a minimal amount of local pages is still available for
176file I/O even if the node is overallocated.
177
178The default is 1 percent.
179
180=============================================================
181
Christoph Lameter0ff38492006-09-25 23:31:52 -0700182min_slab_ratio:
183
184This is available only on NUMA kernels.
185
186A percentage of the total pages in each zone. On Zone reclaim
187(fallback from the local zone occurs) slabs will be reclaimed if more
188than this percentage of pages in a zone are reclaimable slab pages.
189This insures that the slab growth stays under control even in NUMA
190systems that rarely perform global reclaim.
191
192The default is 5 percent.
193
194Note that slab reclaim is triggered in a per zone / node fashion.
195The process of reclaiming slab memory is currently not node specific
196and may not be fast.
197
198=============================================================
199
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700200panic_on_oom
201
Yasunori Goto2b744c02007-05-06 14:49:59 -0700202This enables or disables panic on out-of-memory feature.
203
204If this is set to 0, the kernel will kill some rogue process,
205called oom_killer. Usually, oom_killer can kill rogue processes and
206system will survive.
207
208If this is set to 1, the kernel panics when out-of-memory happens.
209However, if a process limits using nodes by mempolicy/cpusets,
210and those nodes become memory exhaustion status, one process
211may be killed by oom-killer. No panic occurs in this case.
212Because other nodes' memory may be free. This means system total status
213may be not fatal yet.
214
215If this is set to 2, the kernel panics compulsorily even on the
216above-mentioned.
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700217
218The default value is 0.
Yasunori Goto2b744c02007-05-06 14:49:59 -07002191 and 2 are for failover of clustering. Please select either
220according to your policy of failover.
Eric Parised032182007-06-28 15:55:21 -0400221
222==============================================================
223
224mmap_min_addr
225
226This file indicates the amount of address space which a user process will
227be restricted from mmaping. Since kernel null dereference bugs could
228accidentally operate based on the information in the first couple of pages
229of memory userspace processes should not be allowed to write to them. By
230default this value is set to 0 and no protections will be enforced by the
231security module. Setting this value to something like 64k will allow the
232vast majority of applications to work correctly and provide defense in depth
233against future potential kernel bugs.
234
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700235==============================================================
236
237numa_zonelist_order
238
239This sysctl is only for NUMA.
240'where the memory is allocated from' is controlled by zonelists.
241(This documentation ignores ZONE_HIGHMEM/ZONE_DMA32 for simple explanation.
242 you may be able to read ZONE_DMA as ZONE_DMA32...)
243
244In non-NUMA case, a zonelist for GFP_KERNEL is ordered as following.
245ZONE_NORMAL -> ZONE_DMA
246This means that a memory allocation request for GFP_KERNEL will
247get memory from ZONE_DMA only when ZONE_NORMAL is not available.
248
249In NUMA case, you can think of following 2 types of order.
250Assume 2 node NUMA and below is zonelist of Node(0)'s GFP_KERNEL
251
252(A) Node(0) ZONE_NORMAL -> Node(0) ZONE_DMA -> Node(1) ZONE_NORMAL
253(B) Node(0) ZONE_NORMAL -> Node(1) ZONE_NORMAL -> Node(0) ZONE_DMA.
254
255Type(A) offers the best locality for processes on Node(0), but ZONE_DMA
256will be used before ZONE_NORMAL exhaustion. This increases possibility of
257out-of-memory(OOM) of ZONE_DMA because ZONE_DMA is tend to be small.
258
259Type(B) cannot offer the best locality but is more robust against OOM of
260the DMA zone.
261
262Type(A) is called as "Node" order. Type (B) is "Zone" order.
263
264"Node order" orders the zonelists by node, then by zone within each node.
265Specify "[Nn]ode" for zone order
266
267"Zone Order" orders the zonelists by zone type, then by node within each
268zone. Specify "[Zz]one"for zode order.
269
270Specify "[Dd]efault" to request automatic configuration. Autoconfiguration
271will select "node" order in following case.
272(1) if the DMA zone does not exist or
273(2) if the DMA zone comprises greater than 50% of the available memory or
274(3) if any node's DMA zone comprises greater than 60% of its local memory and
275 the amount of local memory is big enough.
276
277Otherwise, "zone" order will be selected. Default order is recommended unless
278this is causing problems for your system/application.