blob: f6989573835796b845eb5d8715af2893f637200b [file] [log] [blame]
Peter W Morrealedb0fb182009-01-15 13:50:42 -08001Documentation for /proc/sys/vm/* kernel version 2.6.29
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 (c) 1998, 1999, Rik van Riel <riel@nl.linux.org>
Peter W Morrealedb0fb182009-01-15 13:50:42 -08003 (c) 2008 Peter W. Morreale <pmorreale@novell.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5For general info and legal blurb, please look in README.
6
7==============================================================
8
9This file contains the documentation for the sysctl files in
Peter W Morrealedb0fb182009-01-15 13:50:42 -080010/proc/sys/vm and is valid for Linux kernel version 2.6.29.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12The files in this directory can be used to tune the operation
13of the virtual memory (VM) subsystem of the Linux kernel and
14the writeout of dirty data to disk.
15
16Default values and initialization routines for most of these
17files can be found in mm/swap.c.
18
19Currently, these files are in /proc/sys/vm:
Peter W Morrealedb0fb182009-01-15 13:50:42 -080020
21- block_dump
Mel Gorman76ab0f52010-05-24 14:32:28 -070022- compact_memory
Peter W Morrealedb0fb182009-01-15 13:50:42 -080023- dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070024- dirty_background_ratio
Peter W Morrealedb0fb182009-01-15 13:50:42 -080025- dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070026- dirty_expire_centisecs
Peter W Morrealedb0fb182009-01-15 13:50:42 -080027- dirty_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070028- dirty_writeback_centisecs
Peter W Morrealedb0fb182009-01-15 13:50:42 -080029- drop_caches
Mel Gorman5e771902010-05-24 14:32:31 -070030- extfrag_threshold
Peter W Morrealedb0fb182009-01-15 13:50:42 -080031- hugepages_treat_as_movable
32- hugetlb_shm_group
33- laptop_mode
34- legacy_va_layout
35- lowmem_reserve_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070036- max_map_count
Andi Kleen6a460792009-09-16 11:50:15 +020037- memory_failure_early_kill
38- memory_failure_recovery
Linus Torvalds1da177e2005-04-16 15:20:36 -070039- min_free_kbytes
Christoph Lameter0ff38492006-09-25 23:31:52 -070040- min_slab_ratio
Peter W Morrealedb0fb182009-01-15 13:50:42 -080041- min_unmapped_ratio
42- mmap_min_addr
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -080043- nr_hugepages
44- nr_overcommit_hugepages
Peter W Morrealedb0fb182009-01-15 13:50:42 -080045- nr_trim_pages (only if CONFIG_MMU=n)
46- numa_zonelist_order
47- oom_dump_tasks
48- oom_kill_allocating_task
49- overcommit_memory
50- overcommit_ratio
51- page-cluster
52- panic_on_oom
53- percpu_pagelist_fraction
54- stat_interval
55- swappiness
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -070056- user_reserve_kbytes
Peter W Morrealedb0fb182009-01-15 13:50:42 -080057- vfs_cache_pressure
58- zone_reclaim_mode
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060==============================================================
61
Peter W Morrealedb0fb182009-01-15 13:50:42 -080062block_dump
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Peter W Morrealedb0fb182009-01-15 13:50:42 -080064block_dump enables block I/O debugging when set to a nonzero value. More
65information on block I/O debugging is in Documentation/laptops/laptop-mode.txt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67==============================================================
68
Mel Gorman76ab0f52010-05-24 14:32:28 -070069compact_memory
70
71Available only when CONFIG_COMPACTION is set. When 1 is written to the file,
72all zones are compacted such that free memory is available in contiguous
73blocks where possible. This can be important for example in the allocation of
74huge pages although processes will also directly compact memory as required.
75
76==============================================================
77
Peter W Morrealedb0fb182009-01-15 13:50:42 -080078dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Artem Bityutskiy6601fac2012-07-25 18:12:01 +030080Contains the amount of dirty memory at which the background kernel
81flusher threads will start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Andrea Righiabffc022010-10-27 15:33:31 -070083Note: dirty_background_bytes is the counterpart of dirty_background_ratio. Only
84one of them may be specified at a time. When one sysctl is written it is
85immediately taken into account to evaluate the dirty memory limits and the
86other appears as 0 when read.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88==============================================================
89
Peter W Morrealedb0fb182009-01-15 13:50:42 -080090dirty_background_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Peter W Morrealedb0fb182009-01-15 13:50:42 -080092Contains, as a percentage of total system memory, the number of pages at which
Artem Bityutskiy6601fac2012-07-25 18:12:01 +030093the background kernel flusher threads will start writing out dirty data.
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95==============================================================
96
Peter W Morrealedb0fb182009-01-15 13:50:42 -080097dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Peter W Morrealedb0fb182009-01-15 13:50:42 -080099Contains the amount of dirty memory at which a process generating disk writes
100will itself start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Andrea Righiabffc022010-10-27 15:33:31 -0700102Note: dirty_bytes is the counterpart of dirty_ratio. Only one of them may be
103specified at a time. When one sysctl is written it is immediately taken into
104account to evaluate the dirty memory limits and the other appears as 0 when
105read.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800106
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700107Note: the minimum value allowed for dirty_bytes is two pages (in bytes); any
108value lower than this limit will be ignored and the old configuration will be
109retained.
110
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800111==============================================================
112
113dirty_expire_centisecs
114
115This tunable is used to define when dirty data is old enough to be eligible
Artem Bityutskiy6601fac2012-07-25 18:12:01 +0300116for writeout by the kernel flusher threads. It is expressed in 100'ths
117of a second. Data which has been dirty in-memory for longer than this
118interval will be written out next time a flusher thread wakes up.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800119
120==============================================================
121
122dirty_ratio
123
124Contains, as a percentage of total system memory, the number of pages at which
125a process which is generating disk writes will itself start writing out dirty
126data.
127
128==============================================================
129
130dirty_writeback_centisecs
131
Artem Bityutskiy6601fac2012-07-25 18:12:01 +0300132The kernel flusher threads will periodically wake up and write `old' data
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800133out to disk. This tunable expresses the interval between those wakeups, in
134100'ths of a second.
135
136Setting this to zero disables periodic writeback altogether.
137
138==============================================================
139
140drop_caches
141
142Writing to this will cause the kernel to drop clean caches, dentries and
143inodes from memory, causing that memory to become free.
144
145To free pagecache:
146 echo 1 > /proc/sys/vm/drop_caches
147To free dentries and inodes:
148 echo 2 > /proc/sys/vm/drop_caches
149To free pagecache, dentries and inodes:
150 echo 3 > /proc/sys/vm/drop_caches
151
152As this is a non-destructive operation and dirty objects are not freeable, the
153user should run `sync' first.
154
155==============================================================
156
Mel Gorman5e771902010-05-24 14:32:31 -0700157extfrag_threshold
158
159This parameter affects whether the kernel will compact memory or direct
160reclaim to satisfy a high-order allocation. /proc/extfrag_index shows what
161the fragmentation index for each order is in each zone in the system. Values
162tending towards 0 imply allocations would fail due to lack of memory,
163values towards 1000 imply failures are due to fragmentation and -1 implies
164that the allocation will succeed as long as watermarks are met.
165
166The kernel will not compact memory in a zone if the
167fragmentation index is <= extfrag_threshold. The default value is 500.
168
169==============================================================
170
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800171hugepages_treat_as_movable
172
173This parameter is only useful when kernelcore= is specified at boot time to
174create ZONE_MOVABLE for pages that may be reclaimed or migrated. Huge pages
175are not movable so are not normally allocated from ZONE_MOVABLE. A non-zero
176value written to hugepages_treat_as_movable allows huge pages to be allocated
177from ZONE_MOVABLE.
178
179Once enabled, the ZONE_MOVABLE is treated as an area of memory the huge
180pages pool can easily grow or shrink within. Assuming that applications are
181not running that mlock() a lot of memory, it is likely the huge pages pool
182can grow to the size of ZONE_MOVABLE by repeatedly entering the desired value
183into nr_hugepages and triggering page reclaim.
184
185==============================================================
186
187hugetlb_shm_group
188
189hugetlb_shm_group contains group id that is allowed to create SysV
190shared memory segment using hugetlb page.
191
192==============================================================
193
194laptop_mode
195
196laptop_mode is a knob that controls "laptop mode". All the things that are
197controlled by this knob are discussed in Documentation/laptops/laptop-mode.txt.
198
199==============================================================
200
201legacy_va_layout
202
Kulikov Vasiliy2174efb2010-06-28 13:59:28 +0200203If non-zero, this sysctl disables the new 32-bit mmap layout - the kernel
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800204will use the legacy (2.4) layout for all processes.
205
206==============================================================
207
208lowmem_reserve_ratio
209
210For some specialised workloads on highmem machines it is dangerous for
211the kernel to allow process memory to be allocated from the "lowmem"
212zone. This is because that memory could then be pinned via the mlock()
213system call, or by unavailability of swapspace.
214
215And on large highmem machines this lack of reclaimable lowmem memory
216can be fatal.
217
218So the Linux page allocator has a mechanism which prevents allocations
219which _could_ use highmem from using too much lowmem. This means that
220a certain amount of lowmem is defended from the possibility of being
221captured into pinned user memory.
222
223(The same argument applies to the old 16 megabyte ISA DMA region. This
224mechanism will also defend that region from allocations which could use
225highmem or lowmem).
226
227The `lowmem_reserve_ratio' tunable determines how aggressive the kernel is
228in defending these lower zones.
229
230If you have a machine which uses highmem or ISA DMA and your
231applications are using mlock(), or if you are running with no swap then
232you probably should change the lowmem_reserve_ratio setting.
233
234The lowmem_reserve_ratio is an array. You can see them by reading this file.
235-
236% cat /proc/sys/vm/lowmem_reserve_ratio
237256 256 32
238-
239Note: # of this elements is one fewer than number of zones. Because the highest
240 zone's value is not necessary for following calculation.
241
242But, these values are not used directly. The kernel calculates # of protection
243pages for each zones from them. These are shown as array of protection pages
244in /proc/zoneinfo like followings. (This is an example of x86-64 box).
245Each zone has an array of protection pages like this.
246
247-
248Node 0, zone DMA
249 pages free 1355
250 min 3
251 low 3
252 high 4
253 :
254 :
255 numa_other 0
256 protection: (0, 2004, 2004, 2004)
257 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
258 pagesets
259 cpu: 0 pcp: 0
260 :
261-
262These protections are added to score to judge whether this zone should be used
263for page allocation or should be reclaimed.
264
265In this example, if normal pages (index=2) are required to this DMA zone and
Mel Gorman41858962009-06-16 15:32:12 -0700266watermark[WMARK_HIGH] is used for watermark, the kernel judges this zone should
267not be used because pages_free(1355) is smaller than watermark + protection[2]
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800268(4 + 2004 = 2008). If this protection value is 0, this zone would be used for
269normal page requirement. If requirement is DMA zone(index=0), protection[0]
270(=0) is used.
271
272zone[i]'s protection[j] is calculated by following expression.
273
274(i < j):
275 zone[i]->protection[j]
276 = (total sums of present_pages from zone[i+1] to zone[j] on the node)
277 / lowmem_reserve_ratio[i];
278(i = j):
279 (should not be protected. = 0;
280(i > j):
281 (not necessary, but looks 0)
282
283The default values of lowmem_reserve_ratio[i] are
284 256 (if zone[i] means DMA or DMA32 zone)
285 32 (others).
286As above expression, they are reciprocal number of ratio.
287256 means 1/256. # of protection pages becomes about "0.39%" of total present
288pages of higher zones on the node.
289
290If you would like to protect more pages, smaller values are effective.
291The minimum value is 1 (1/1 -> 100%).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293==============================================================
294
295max_map_count:
296
297This file contains the maximum number of memory map areas a process
298may have. Memory map areas are used as a side-effect of calling
299malloc, directly by mmap and mprotect, and also when loading shared
300libraries.
301
302While most applications need less than a thousand maps, certain
303programs, particularly malloc debuggers, may consume lots of them,
304e.g., up to one or two maps per allocation.
305
306The default value is 65536.
307
Andi Kleen6a460792009-09-16 11:50:15 +0200308=============================================================
309
310memory_failure_early_kill:
311
312Control how to kill processes when uncorrected memory error (typically
313a 2bit error in a memory module) is detected in the background by hardware
314that cannot be handled by the kernel. In some cases (like the page
315still having a valid copy on disk) the kernel will handle the failure
316transparently without affecting any applications. But if there is
317no other uptodate copy of the data it will kill to prevent any data
318corruptions from propagating.
319
3201: Kill all processes that have the corrupted and not reloadable page mapped
321as soon as the corruption is detected. Note this is not supported
322for a few types of pages, like kernel internally allocated data or
323the swap cache, but works for the majority of user pages.
324
3250: Only unmap the corrupted page from all processes and only kill a process
326who tries to access it.
327
328The kill is done using a catchable SIGBUS with BUS_MCEERR_AO, so processes can
329handle this if they want to.
330
331This is only active on architectures/platforms with advanced machine
332check handling and depends on the hardware capabilities.
333
334Applications can override this setting individually with the PR_MCE_KILL prctl
335
336==============================================================
337
338memory_failure_recovery
339
340Enable memory failure recovery (when supported by the platform)
341
3421: Attempt recovery.
343
3440: Always panic on a memory failure.
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346==============================================================
347
348min_free_kbytes:
349
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800350This is used to force the Linux VM to keep a minimum number
Mel Gorman41858962009-06-16 15:32:12 -0700351of kilobytes free. The VM uses this number to compute a
352watermark[WMARK_MIN] value for each lowmem zone in the system.
353Each lowmem zone gets a number of reserved free pages based
354proportionally on its size.
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800355
Matt LaPlanted9195882008-07-25 19:45:33 -0700356Some minimal amount of memory is needed to satisfy PF_MEMALLOC
Pavel Machek24950892007-10-16 23:31:28 -0700357allocations; if you set this to lower than 1024KB, your system will
358become subtly broken, and prone to deadlock under high loads.
359
360Setting this too high will OOM your machine instantly.
361
Christoph Lameter96146342006-07-03 00:24:13 -0700362=============================================================
363
Christoph Lameter0ff38492006-09-25 23:31:52 -0700364min_slab_ratio:
365
366This is available only on NUMA kernels.
367
368A percentage of the total pages in each zone. On Zone reclaim
369(fallback from the local zone occurs) slabs will be reclaimed if more
370than this percentage of pages in a zone are reclaimable slab pages.
371This insures that the slab growth stays under control even in NUMA
372systems that rarely perform global reclaim.
373
374The default is 5 percent.
375
376Note that slab reclaim is triggered in a per zone / node fashion.
377The process of reclaiming slab memory is currently not node specific
378and may not be fast.
379
380=============================================================
381
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800382min_unmapped_ratio:
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700383
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800384This is available only on NUMA kernels.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700385
Mel Gorman90afa5d2009-06-16 15:33:20 -0700386This is a percentage of the total pages in each zone. Zone reclaim will
387only occur if more than this percentage of pages are in a state that
388zone_reclaim_mode allows to be reclaimed.
389
390If zone_reclaim_mode has the value 4 OR'd, then the percentage is compared
391against all file-backed unmapped pages including swapcache pages and tmpfs
392files. Otherwise, only unmapped pages backed by normal files but not tmpfs
393files and similar are considered.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700394
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800395The default is 1 percent.
David Rientjesfe071d72007-10-16 23:25:56 -0700396
Eric Parised032182007-06-28 15:55:21 -0400397==============================================================
398
399mmap_min_addr
400
401This file indicates the amount of address space which a user process will
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200402be restricted from mmapping. Since kernel null dereference bugs could
Eric Parised032182007-06-28 15:55:21 -0400403accidentally operate based on the information in the first couple of pages
404of memory userspace processes should not be allowed to write to them. By
405default this value is set to 0 and no protections will be enforced by the
406security module. Setting this value to something like 64k will allow the
407vast majority of applications to work correctly and provide defense in depth
408against future potential kernel bugs.
409
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700410==============================================================
411
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800412nr_hugepages
413
414Change the minimum size of the hugepage pool.
415
416See Documentation/vm/hugetlbpage.txt
417
418==============================================================
419
420nr_overcommit_hugepages
421
422Change the maximum size of the hugepage pool. The maximum is
423nr_hugepages + nr_overcommit_hugepages.
424
425See Documentation/vm/hugetlbpage.txt
426
427==============================================================
428
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800429nr_trim_pages
430
431This is available only on NOMMU kernels.
432
433This value adjusts the excess page trimming behaviour of power-of-2 aligned
434NOMMU mmap allocations.
435
436A value of 0 disables trimming of allocations entirely, while a value of 1
437trims excess pages aggressively. Any value >= 1 acts as the watermark where
438trimming of allocations is initiated.
439
440The default value is 1.
441
442See Documentation/nommu-mmap.txt for more information.
443
444==============================================================
445
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700446numa_zonelist_order
447
448This sysctl is only for NUMA.
449'where the memory is allocated from' is controlled by zonelists.
450(This documentation ignores ZONE_HIGHMEM/ZONE_DMA32 for simple explanation.
451 you may be able to read ZONE_DMA as ZONE_DMA32...)
452
453In non-NUMA case, a zonelist for GFP_KERNEL is ordered as following.
454ZONE_NORMAL -> ZONE_DMA
455This means that a memory allocation request for GFP_KERNEL will
456get memory from ZONE_DMA only when ZONE_NORMAL is not available.
457
458In NUMA case, you can think of following 2 types of order.
459Assume 2 node NUMA and below is zonelist of Node(0)'s GFP_KERNEL
460
461(A) Node(0) ZONE_NORMAL -> Node(0) ZONE_DMA -> Node(1) ZONE_NORMAL
462(B) Node(0) ZONE_NORMAL -> Node(1) ZONE_NORMAL -> Node(0) ZONE_DMA.
463
464Type(A) offers the best locality for processes on Node(0), but ZONE_DMA
465will be used before ZONE_NORMAL exhaustion. This increases possibility of
466out-of-memory(OOM) of ZONE_DMA because ZONE_DMA is tend to be small.
467
468Type(B) cannot offer the best locality but is more robust against OOM of
469the DMA zone.
470
471Type(A) is called as "Node" order. Type (B) is "Zone" order.
472
473"Node order" orders the zonelists by node, then by zone within each node.
Paul Bolle5a3016a2011-04-06 11:09:55 +0200474Specify "[Nn]ode" for node order
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700475
476"Zone Order" orders the zonelists by zone type, then by node within each
Paul Bolle5a3016a2011-04-06 11:09:55 +0200477zone. Specify "[Zz]one" for zone order.
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700478
479Specify "[Dd]efault" to request automatic configuration. Autoconfiguration
480will select "node" order in following case.
481(1) if the DMA zone does not exist or
482(2) if the DMA zone comprises greater than 50% of the available memory or
483(3) if any node's DMA zone comprises greater than 60% of its local memory and
484 the amount of local memory is big enough.
485
486Otherwise, "zone" order will be selected. Default order is recommended unless
487this is causing problems for your system/application.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800488
489==============================================================
490
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800491oom_dump_tasks
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800492
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800493Enables a system-wide task dump (excluding kernel threads) to be
494produced when the kernel performs an OOM-killing and includes such
David Rientjesde34d962012-07-31 16:42:56 -0700495information as pid, uid, tgid, vm size, rss, nr_ptes, swapents,
496oom_score_adj score, and name. This is helpful to determine why the
497OOM killer was invoked, to identify the rogue task that caused it,
498and to determine why the OOM killer chose the task it did to kill.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800499
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800500If this is set to zero, this information is suppressed. On very
501large systems with thousands of tasks it may not be feasible to dump
502the memory state information for each one. Such systems should not
503be forced to incur a performance penalty in OOM conditions when the
504information may not be desired.
505
506If this is set to non-zero, this information is shown whenever the
507OOM killer actually kills a memory-hogging task.
508
David Rientjesad915c42010-08-09 17:18:53 -0700509The default value is 1 (enabled).
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800510
511==============================================================
512
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800513oom_kill_allocating_task
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800514
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800515This enables or disables killing the OOM-triggering task in
516out-of-memory situations.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800517
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800518If this is set to zero, the OOM killer will scan through the entire
519tasklist and select a task based on heuristics to kill. This normally
520selects a rogue memory-hogging task that frees up a large amount of
521memory when killed.
522
523If this is set to non-zero, the OOM killer simply kills the task that
524triggered the out-of-memory condition. This avoids the expensive
525tasklist scan.
526
527If panic_on_oom is selected, it takes precedence over whatever value
528is used in oom_kill_allocating_task.
529
530The default value is 0.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000531
532==============================================================
533
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800534overcommit_memory:
Paul Mundtdd8632a2009-01-08 12:04:47 +0000535
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800536This value contains a flag that enables memory overcommitment.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000537
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800538When this flag is 0, the kernel attempts to estimate the amount
539of free memory left when userspace requests more memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000540
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800541When this flag is 1, the kernel pretends there is always enough
542memory until it actually runs out.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000543
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800544When this flag is 2, the kernel uses a "never overcommit"
545policy that attempts to prevent any overcommit of memory.
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -0700546Note that user_reserve_kbytes affects this policy.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000547
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800548This feature can be very useful because there are a lot of
549programs that malloc() huge amounts of memory "just-in-case"
550and don't use much of it.
551
552The default value is 0.
553
554See Documentation/vm/overcommit-accounting and
555security/commoncap.c::cap_vm_enough_memory() for more information.
556
557==============================================================
558
559overcommit_ratio:
560
561When overcommit_memory is set to 2, the committed address
562space is not permitted to exceed swap plus this percentage
563of physical RAM. See above.
564
565==============================================================
566
567page-cluster
568
Christian Ehrhardtdf858fa2012-07-31 16:41:46 -0700569page-cluster controls the number of pages up to which consecutive pages
570are read in from swap in a single attempt. This is the swap counterpart
571to page cache readahead.
572The mentioned consecutivity is not in terms of virtual/physical addresses,
573but consecutive on swap space - that means they were swapped out together.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800574
575It is a logarithmic value - setting it to zero means "1 page", setting
576it to 1 means "2 pages", setting it to 2 means "4 pages", etc.
Christian Ehrhardtdf858fa2012-07-31 16:41:46 -0700577Zero disables swap readahead completely.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800578
579The default value is three (eight pages at a time). There may be some
580small benefits in tuning this to a different value if your workload is
581swap-intensive.
582
Christian Ehrhardtdf858fa2012-07-31 16:41:46 -0700583Lower values mean lower latencies for initial faults, but at the same time
584extra faults and I/O delays for following faults if they would have been part of
585that consecutive pages readahead would have brought in.
586
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800587=============================================================
588
589panic_on_oom
590
591This enables or disables panic on out-of-memory feature.
592
593If this is set to 0, the kernel will kill some rogue process,
594called oom_killer. Usually, oom_killer can kill rogue processes and
595system will survive.
596
597If this is set to 1, the kernel panics when out-of-memory happens.
598However, if a process limits using nodes by mempolicy/cpusets,
599and those nodes become memory exhaustion status, one process
600may be killed by oom-killer. No panic occurs in this case.
601Because other nodes' memory may be free. This means system total status
602may be not fatal yet.
603
604If this is set to 2, the kernel panics compulsorily even on the
KAMEZAWA Hiroyukidaaf1e62010-03-10 15:22:32 -0800605above-mentioned. Even oom happens under memory cgroup, the whole
606system panics.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800607
608The default value is 0.
6091 and 2 are for failover of clustering. Please select either
610according to your policy of failover.
KAMEZAWA Hiroyukidaaf1e62010-03-10 15:22:32 -0800611panic_on_oom=2+kdump gives you very strong tool to investigate
612why oom happens. You can get snapshot.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800613
614=============================================================
615
616percpu_pagelist_fraction
617
618This is the fraction of pages at most (high mark pcp->high) in each zone that
619are allocated for each per cpu page list. The min value for this is 8. It
620means that we don't allow more than 1/8th of pages in each zone to be
621allocated in any single per_cpu_pagelist. This entry only changes the value
622of hot per cpu pagelists. User can specify a number like 100 to allocate
6231/100th of each zone to each per cpu page list.
624
625The batch value of each per cpu pagelist is also updated as a result. It is
626set to pcp->high/4. The upper limit of batch is (PAGE_SHIFT * 8)
627
628The initial value is zero. Kernel does not use this value at boot time to set
629the high water marks for each per cpu page list.
630
631==============================================================
632
633stat_interval
634
635The time interval between which vm statistics are updated. The default
636is 1 second.
637
638==============================================================
639
640swappiness
641
642This control is used to define how aggressive the kernel will swap
643memory pages. Higher values will increase agressiveness, lower values
Matt LaPlante19f59462009-04-27 15:06:31 +0200644decrease the amount of swap.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800645
646The default value is 60.
647
648==============================================================
649
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -0700650- user_reserve_kbytes
651
652When overcommit_memory is set to 2, "never overommit" mode, reserve
653min(3% of current process size, user_reserve_kbytes) of free memory.
654This is intended to prevent a user from starting a single memory hogging
655process, such that they cannot recover (kill the hog).
656
657user_reserve_kbytes defaults to min(3% of the current process size, 128MB).
658
659If this is reduced to zero, then the user will be allowed to allocate
660all free memory with a single process, minus admin_reserve_kbytes.
661Any subsequent attempts to execute a command will result in
662"fork: Cannot allocate memory".
663
664Changing this takes effect whenever an application requests memory.
665
666==============================================================
667
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800668vfs_cache_pressure
669------------------
670
671Controls the tendency of the kernel to reclaim the memory which is used for
672caching of directory and inode objects.
673
674At the default value of vfs_cache_pressure=100 the kernel will attempt to
675reclaim dentries and inodes at a "fair" rate with respect to pagecache and
676swapcache reclaim. Decreasing vfs_cache_pressure causes the kernel to prefer
Jan Kara55c37a82009-09-21 17:01:40 -0700677to retain dentry and inode caches. When vfs_cache_pressure=0, the kernel will
678never reclaim dentries and inodes due to memory pressure and this can easily
679lead to out-of-memory conditions. Increasing vfs_cache_pressure beyond 100
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800680causes the kernel to prefer to reclaim dentries and inodes.
681
682==============================================================
683
684zone_reclaim_mode:
685
686Zone_reclaim_mode allows someone to set more or less aggressive approaches to
687reclaim memory when a zone runs out of memory. If it is set to zero then no
688zone reclaim occurs. Allocations will be satisfied from other zones / nodes
689in the system.
690
691This is value ORed together of
692
6931 = Zone reclaim on
6942 = Zone reclaim writes dirty pages out
6954 = Zone reclaim swaps pages
696
697zone_reclaim_mode is set during bootup to 1 if it is determined that pages
698from remote zones will cause a measurable performance reduction. The
699page allocator will then reclaim easily reusable pages (those page
700cache pages that are currently not used) before allocating off node pages.
701
702It may be beneficial to switch off zone reclaim if the system is
703used for a file server and all of memory should be used for caching files
704from disk. In that case the caching effect is more important than
705data locality.
706
707Allowing zone reclaim to write out pages stops processes that are
708writing large amounts of data from dirtying pages on other nodes. Zone
709reclaim will write out dirty pages if a zone fills up and so effectively
710throttle the process. This may decrease the performance of a single process
711since it cannot use all of system memory to buffer the outgoing writes
712anymore but it preserve the memory on other nodes so that the performance
713of other processes running on other nodes will not be affected.
714
715Allowing regular swap effectively restricts allocations to the local
716node unless explicitly overridden by memory policies or cpuset
717configurations.
718
719============ End of Document =================================