blob: 1fbd4eb7b64aff335bed40a3d9ebbde95a26bcc1 [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
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -070021- admin_reserve_kbytes
Peter W Morrealedb0fb182009-01-15 13:50:42 -080022- block_dump
Mel Gorman76ab0f52010-05-24 14:32:28 -070023- compact_memory
Peter W Morrealedb0fb182009-01-15 13:50:42 -080024- dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070025- dirty_background_ratio
Peter W Morrealedb0fb182009-01-15 13:50:42 -080026- dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070027- dirty_expire_centisecs
Peter W Morrealedb0fb182009-01-15 13:50:42 -080028- dirty_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070029- dirty_writeback_centisecs
Peter W Morrealedb0fb182009-01-15 13:50:42 -080030- drop_caches
Mel Gorman5e771902010-05-24 14:32:31 -070031- extfrag_threshold
Peter W Morrealedb0fb182009-01-15 13:50:42 -080032- hugepages_treat_as_movable
33- hugetlb_shm_group
34- laptop_mode
35- legacy_va_layout
36- lowmem_reserve_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070037- max_map_count
Andi Kleen6a460792009-09-16 11:50:15 +020038- memory_failure_early_kill
39- memory_failure_recovery
Linus Torvalds1da177e2005-04-16 15:20:36 -070040- min_free_kbytes
Christoph Lameter0ff38492006-09-25 23:31:52 -070041- min_slab_ratio
Peter W Morrealedb0fb182009-01-15 13:50:42 -080042- min_unmapped_ratio
43- mmap_min_addr
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -080044- nr_hugepages
45- nr_overcommit_hugepages
Peter W Morrealedb0fb182009-01-15 13:50:42 -080046- nr_trim_pages (only if CONFIG_MMU=n)
47- numa_zonelist_order
48- oom_dump_tasks
49- oom_kill_allocating_task
50- overcommit_memory
51- overcommit_ratio
52- page-cluster
53- panic_on_oom
54- percpu_pagelist_fraction
55- stat_interval
56- swappiness
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -070057- user_reserve_kbytes
Peter W Morrealedb0fb182009-01-15 13:50:42 -080058- vfs_cache_pressure
59- zone_reclaim_mode
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061==============================================================
62
Andrew Shewmaker4eeab4f2013-04-29 15:08:11 -070063admin_reserve_kbytes
64
65The amount of free memory in the system that should be reserved for users
66with the capability cap_sys_admin.
67
68admin_reserve_kbytes defaults to min(3% of free pages, 8MB)
69
70That should provide enough for the admin to log in and kill a process,
71if necessary, under the default overcommit 'guess' mode.
72
73Systems running under overcommit 'never' should increase this to account
74for the full Virtual Memory Size of programs used to recover. Otherwise,
75root may not be able to log in to recover the system.
76
77How do you calculate a minimum useful reserve?
78
79sshd or login + bash (or some other shell) + top (or ps, kill, etc.)
80
81For overcommit 'guess', we can sum resident set sizes (RSS).
82On x86_64 this is about 8MB.
83
84For overcommit 'never', we can take the max of their virtual sizes (VSZ)
85and add the sum of their RSS.
86On x86_64 this is about 128MB.
87
88Changing this takes effect whenever an application requests memory.
89
90==============================================================
91
Peter W Morrealedb0fb182009-01-15 13:50:42 -080092block_dump
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Peter W Morrealedb0fb182009-01-15 13:50:42 -080094block_dump enables block I/O debugging when set to a nonzero value. More
95information on block I/O debugging is in Documentation/laptops/laptop-mode.txt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97==============================================================
98
Mel Gorman76ab0f52010-05-24 14:32:28 -070099compact_memory
100
101Available only when CONFIG_COMPACTION is set. When 1 is written to the file,
102all zones are compacted such that free memory is available in contiguous
103blocks where possible. This can be important for example in the allocation of
104huge pages although processes will also directly compact memory as required.
105
106==============================================================
107
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800108dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Artem Bityutskiy6601fac2012-07-25 18:12:01 +0300110Contains the amount of dirty memory at which the background kernel
111flusher threads will start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Andrea Righiabffc022010-10-27 15:33:31 -0700113Note: dirty_background_bytes is the counterpart of dirty_background_ratio. Only
114one of them may be specified at a time. When one sysctl is written it is
115immediately taken into account to evaluate the dirty memory limits and the
116other appears as 0 when read.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118==============================================================
119
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800120dirty_background_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Zheng Liu715ea412013-11-12 15:08:30 -0800122Contains, as a percentage of total available memory that contains free pages
123and reclaimable pages, the number of pages at which the background kernel
124flusher threads will start writing out dirty data.
125
126The total avaiable memory is not equal to total system memory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128==============================================================
129
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800130dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800132Contains the amount of dirty memory at which a process generating disk writes
133will itself start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Andrea Righiabffc022010-10-27 15:33:31 -0700135Note: dirty_bytes is the counterpart of dirty_ratio. Only one of them may be
136specified at a time. When one sysctl is written it is immediately taken into
137account to evaluate the dirty memory limits and the other appears as 0 when
138read.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800139
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700140Note: the minimum value allowed for dirty_bytes is two pages (in bytes); any
141value lower than this limit will be ignored and the old configuration will be
142retained.
143
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800144==============================================================
145
146dirty_expire_centisecs
147
148This tunable is used to define when dirty data is old enough to be eligible
Artem Bityutskiy6601fac2012-07-25 18:12:01 +0300149for writeout by the kernel flusher threads. It is expressed in 100'ths
150of a second. Data which has been dirty in-memory for longer than this
151interval will be written out next time a flusher thread wakes up.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800152
153==============================================================
154
155dirty_ratio
156
Zheng Liu715ea412013-11-12 15:08:30 -0800157Contains, as a percentage of total available memory that contains free pages
158and reclaimable pages, the number of pages at which a process which is
159generating disk writes will itself start writing out dirty data.
160
161The total avaiable memory is not equal to total system memory.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800162
163==============================================================
164
165dirty_writeback_centisecs
166
Artem Bityutskiy6601fac2012-07-25 18:12:01 +0300167The kernel flusher threads will periodically wake up and write `old' data
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800168out to disk. This tunable expresses the interval between those wakeups, in
169100'ths of a second.
170
171Setting this to zero disables periodic writeback altogether.
172
173==============================================================
174
175drop_caches
176
177Writing to this will cause the kernel to drop clean caches, dentries and
178inodes from memory, causing that memory to become free.
179
180To free pagecache:
181 echo 1 > /proc/sys/vm/drop_caches
182To free dentries and inodes:
183 echo 2 > /proc/sys/vm/drop_caches
184To free pagecache, dentries and inodes:
185 echo 3 > /proc/sys/vm/drop_caches
186
187As this is a non-destructive operation and dirty objects are not freeable, the
188user should run `sync' first.
189
190==============================================================
191
Mel Gorman5e771902010-05-24 14:32:31 -0700192extfrag_threshold
193
194This parameter affects whether the kernel will compact memory or direct
195reclaim to satisfy a high-order allocation. /proc/extfrag_index shows what
196the fragmentation index for each order is in each zone in the system. Values
197tending towards 0 imply allocations would fail due to lack of memory,
198values towards 1000 imply failures are due to fragmentation and -1 implies
199that the allocation will succeed as long as watermarks are met.
200
201The kernel will not compact memory in a zone if the
202fragmentation index is <= extfrag_threshold. The default value is 500.
203
204==============================================================
205
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800206hugepages_treat_as_movable
207
Naoya Horiguchi86cdb462013-09-11 14:22:13 -0700208This parameter controls whether we can allocate hugepages from ZONE_MOVABLE
209or not. If set to non-zero, hugepages can be allocated from ZONE_MOVABLE.
210ZONE_MOVABLE is created when kernel boot parameter kernelcore= is specified,
211so this parameter has no effect if used without kernelcore=.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800212
Naoya Horiguchi86cdb462013-09-11 14:22:13 -0700213Hugepage migration is now available in some situations which depend on the
214architecture and/or the hugepage size. If a hugepage supports migration,
215allocation from ZONE_MOVABLE is always enabled for the hugepage regardless
216of the value of this parameter.
217IOW, this parameter affects only non-migratable hugepages.
218
219Assuming that hugepages are not migratable in your system, one usecase of
220this parameter is that users can make hugepage pool more extensible by
221enabling the allocation from ZONE_MOVABLE. This is because on ZONE_MOVABLE
222page reclaim/migration/compaction work more and you can get contiguous
223memory more likely. Note that using ZONE_MOVABLE for non-migratable
224hugepages can do harm to other features like memory hotremove (because
225memory hotremove expects that memory blocks on ZONE_MOVABLE are always
226removable,) so it's a trade-off responsible for the users.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800227
228==============================================================
229
230hugetlb_shm_group
231
232hugetlb_shm_group contains group id that is allowed to create SysV
233shared memory segment using hugetlb page.
234
235==============================================================
236
237laptop_mode
238
239laptop_mode is a knob that controls "laptop mode". All the things that are
240controlled by this knob are discussed in Documentation/laptops/laptop-mode.txt.
241
242==============================================================
243
244legacy_va_layout
245
Kulikov Vasiliy2174efb2010-06-28 13:59:28 +0200246If non-zero, this sysctl disables the new 32-bit mmap layout - the kernel
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800247will use the legacy (2.4) layout for all processes.
248
249==============================================================
250
251lowmem_reserve_ratio
252
253For some specialised workloads on highmem machines it is dangerous for
254the kernel to allow process memory to be allocated from the "lowmem"
255zone. This is because that memory could then be pinned via the mlock()
256system call, or by unavailability of swapspace.
257
258And on large highmem machines this lack of reclaimable lowmem memory
259can be fatal.
260
261So the Linux page allocator has a mechanism which prevents allocations
262which _could_ use highmem from using too much lowmem. This means that
263a certain amount of lowmem is defended from the possibility of being
264captured into pinned user memory.
265
266(The same argument applies to the old 16 megabyte ISA DMA region. This
267mechanism will also defend that region from allocations which could use
268highmem or lowmem).
269
270The `lowmem_reserve_ratio' tunable determines how aggressive the kernel is
271in defending these lower zones.
272
273If you have a machine which uses highmem or ISA DMA and your
274applications are using mlock(), or if you are running with no swap then
275you probably should change the lowmem_reserve_ratio setting.
276
277The lowmem_reserve_ratio is an array. You can see them by reading this file.
278-
279% cat /proc/sys/vm/lowmem_reserve_ratio
280256 256 32
281-
282Note: # of this elements is one fewer than number of zones. Because the highest
283 zone's value is not necessary for following calculation.
284
285But, these values are not used directly. The kernel calculates # of protection
286pages for each zones from them. These are shown as array of protection pages
287in /proc/zoneinfo like followings. (This is an example of x86-64 box).
288Each zone has an array of protection pages like this.
289
290-
291Node 0, zone DMA
292 pages free 1355
293 min 3
294 low 3
295 high 4
296 :
297 :
298 numa_other 0
299 protection: (0, 2004, 2004, 2004)
300 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
301 pagesets
302 cpu: 0 pcp: 0
303 :
304-
305These protections are added to score to judge whether this zone should be used
306for page allocation or should be reclaimed.
307
308In this example, if normal pages (index=2) are required to this DMA zone and
Mel Gorman41858962009-06-16 15:32:12 -0700309watermark[WMARK_HIGH] is used for watermark, the kernel judges this zone should
310not be used because pages_free(1355) is smaller than watermark + protection[2]
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800311(4 + 2004 = 2008). If this protection value is 0, this zone would be used for
312normal page requirement. If requirement is DMA zone(index=0), protection[0]
313(=0) is used.
314
315zone[i]'s protection[j] is calculated by following expression.
316
317(i < j):
318 zone[i]->protection[j]
319 = (total sums of present_pages from zone[i+1] to zone[j] on the node)
320 / lowmem_reserve_ratio[i];
321(i = j):
322 (should not be protected. = 0;
323(i > j):
324 (not necessary, but looks 0)
325
326The default values of lowmem_reserve_ratio[i] are
327 256 (if zone[i] means DMA or DMA32 zone)
328 32 (others).
329As above expression, they are reciprocal number of ratio.
330256 means 1/256. # of protection pages becomes about "0.39%" of total present
331pages of higher zones on the node.
332
333If you would like to protect more pages, smaller values are effective.
334The minimum value is 1 (1/1 -> 100%).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336==============================================================
337
338max_map_count:
339
340This file contains the maximum number of memory map areas a process
341may have. Memory map areas are used as a side-effect of calling
342malloc, directly by mmap and mprotect, and also when loading shared
343libraries.
344
345While most applications need less than a thousand maps, certain
346programs, particularly malloc debuggers, may consume lots of them,
347e.g., up to one or two maps per allocation.
348
349The default value is 65536.
350
Andi Kleen6a460792009-09-16 11:50:15 +0200351=============================================================
352
353memory_failure_early_kill:
354
355Control how to kill processes when uncorrected memory error (typically
356a 2bit error in a memory module) is detected in the background by hardware
357that cannot be handled by the kernel. In some cases (like the page
358still having a valid copy on disk) the kernel will handle the failure
359transparently without affecting any applications. But if there is
360no other uptodate copy of the data it will kill to prevent any data
361corruptions from propagating.
362
3631: Kill all processes that have the corrupted and not reloadable page mapped
364as soon as the corruption is detected. Note this is not supported
365for a few types of pages, like kernel internally allocated data or
366the swap cache, but works for the majority of user pages.
367
3680: Only unmap the corrupted page from all processes and only kill a process
369who tries to access it.
370
371The kill is done using a catchable SIGBUS with BUS_MCEERR_AO, so processes can
372handle this if they want to.
373
374This is only active on architectures/platforms with advanced machine
375check handling and depends on the hardware capabilities.
376
377Applications can override this setting individually with the PR_MCE_KILL prctl
378
379==============================================================
380
381memory_failure_recovery
382
383Enable memory failure recovery (when supported by the platform)
384
3851: Attempt recovery.
386
3870: Always panic on a memory failure.
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389==============================================================
390
391min_free_kbytes:
392
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800393This is used to force the Linux VM to keep a minimum number
Mel Gorman41858962009-06-16 15:32:12 -0700394of kilobytes free. The VM uses this number to compute a
395watermark[WMARK_MIN] value for each lowmem zone in the system.
396Each lowmem zone gets a number of reserved free pages based
397proportionally on its size.
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800398
Matt LaPlanted9195882008-07-25 19:45:33 -0700399Some minimal amount of memory is needed to satisfy PF_MEMALLOC
Pavel Machek24950892007-10-16 23:31:28 -0700400allocations; if you set this to lower than 1024KB, your system will
401become subtly broken, and prone to deadlock under high loads.
402
403Setting this too high will OOM your machine instantly.
404
Christoph Lameter96146342006-07-03 00:24:13 -0700405=============================================================
406
Christoph Lameter0ff38492006-09-25 23:31:52 -0700407min_slab_ratio:
408
409This is available only on NUMA kernels.
410
411A percentage of the total pages in each zone. On Zone reclaim
412(fallback from the local zone occurs) slabs will be reclaimed if more
413than this percentage of pages in a zone are reclaimable slab pages.
414This insures that the slab growth stays under control even in NUMA
415systems that rarely perform global reclaim.
416
417The default is 5 percent.
418
419Note that slab reclaim is triggered in a per zone / node fashion.
420The process of reclaiming slab memory is currently not node specific
421and may not be fast.
422
423=============================================================
424
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800425min_unmapped_ratio:
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700426
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800427This is available only on NUMA kernels.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700428
Mel Gorman90afa5d2009-06-16 15:33:20 -0700429This is a percentage of the total pages in each zone. Zone reclaim will
430only occur if more than this percentage of pages are in a state that
431zone_reclaim_mode allows to be reclaimed.
432
433If zone_reclaim_mode has the value 4 OR'd, then the percentage is compared
434against all file-backed unmapped pages including swapcache pages and tmpfs
435files. Otherwise, only unmapped pages backed by normal files but not tmpfs
436files and similar are considered.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700437
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800438The default is 1 percent.
David Rientjesfe071d72007-10-16 23:25:56 -0700439
Eric Parised032182007-06-28 15:55:21 -0400440==============================================================
441
442mmap_min_addr
443
444This file indicates the amount of address space which a user process will
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200445be restricted from mmapping. Since kernel null dereference bugs could
Eric Parised032182007-06-28 15:55:21 -0400446accidentally operate based on the information in the first couple of pages
447of memory userspace processes should not be allowed to write to them. By
448default this value is set to 0 and no protections will be enforced by the
449security module. Setting this value to something like 64k will allow the
450vast majority of applications to work correctly and provide defense in depth
451against future potential kernel bugs.
452
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700453==============================================================
454
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800455nr_hugepages
456
457Change the minimum size of the hugepage pool.
458
459See Documentation/vm/hugetlbpage.txt
460
461==============================================================
462
463nr_overcommit_hugepages
464
465Change the maximum size of the hugepage pool. The maximum is
466nr_hugepages + nr_overcommit_hugepages.
467
468See Documentation/vm/hugetlbpage.txt
469
470==============================================================
471
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800472nr_trim_pages
473
474This is available only on NOMMU kernels.
475
476This value adjusts the excess page trimming behaviour of power-of-2 aligned
477NOMMU mmap allocations.
478
479A value of 0 disables trimming of allocations entirely, while a value of 1
480trims excess pages aggressively. Any value >= 1 acts as the watermark where
481trimming of allocations is initiated.
482
483The default value is 1.
484
485See Documentation/nommu-mmap.txt for more information.
486
487==============================================================
488
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700489numa_zonelist_order
490
491This sysctl is only for NUMA.
492'where the memory is allocated from' is controlled by zonelists.
493(This documentation ignores ZONE_HIGHMEM/ZONE_DMA32 for simple explanation.
494 you may be able to read ZONE_DMA as ZONE_DMA32...)
495
496In non-NUMA case, a zonelist for GFP_KERNEL is ordered as following.
497ZONE_NORMAL -> ZONE_DMA
498This means that a memory allocation request for GFP_KERNEL will
499get memory from ZONE_DMA only when ZONE_NORMAL is not available.
500
501In NUMA case, you can think of following 2 types of order.
502Assume 2 node NUMA and below is zonelist of Node(0)'s GFP_KERNEL
503
504(A) Node(0) ZONE_NORMAL -> Node(0) ZONE_DMA -> Node(1) ZONE_NORMAL
505(B) Node(0) ZONE_NORMAL -> Node(1) ZONE_NORMAL -> Node(0) ZONE_DMA.
506
507Type(A) offers the best locality for processes on Node(0), but ZONE_DMA
508will be used before ZONE_NORMAL exhaustion. This increases possibility of
509out-of-memory(OOM) of ZONE_DMA because ZONE_DMA is tend to be small.
510
511Type(B) cannot offer the best locality but is more robust against OOM of
512the DMA zone.
513
514Type(A) is called as "Node" order. Type (B) is "Zone" order.
515
516"Node order" orders the zonelists by node, then by zone within each node.
Paul Bolle5a3016a2011-04-06 11:09:55 +0200517Specify "[Nn]ode" for node order
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700518
519"Zone Order" orders the zonelists by zone type, then by node within each
Paul Bolle5a3016a2011-04-06 11:09:55 +0200520zone. Specify "[Zz]one" for zone order.
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700521
522Specify "[Dd]efault" to request automatic configuration. Autoconfiguration
523will select "node" order in following case.
524(1) if the DMA zone does not exist or
525(2) if the DMA zone comprises greater than 50% of the available memory or
Wanpeng Lif8f191f2013-07-08 16:00:16 -0700526(3) if any node's DMA zone comprises greater than 70% of its local memory and
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700527 the amount of local memory is big enough.
528
529Otherwise, "zone" order will be selected. Default order is recommended unless
530this is causing problems for your system/application.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800531
532==============================================================
533
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800534oom_dump_tasks
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800535
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800536Enables a system-wide task dump (excluding kernel threads) to be
537produced when the kernel performs an OOM-killing and includes such
David Rientjesde34d962012-07-31 16:42:56 -0700538information as pid, uid, tgid, vm size, rss, nr_ptes, swapents,
539oom_score_adj score, and name. This is helpful to determine why the
540OOM killer was invoked, to identify the rogue task that caused it,
541and to determine why the OOM killer chose the task it did to kill.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800542
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800543If this is set to zero, this information is suppressed. On very
544large systems with thousands of tasks it may not be feasible to dump
545the memory state information for each one. Such systems should not
546be forced to incur a performance penalty in OOM conditions when the
547information may not be desired.
548
549If this is set to non-zero, this information is shown whenever the
550OOM killer actually kills a memory-hogging task.
551
David Rientjesad915c42010-08-09 17:18:53 -0700552The default value is 1 (enabled).
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800553
554==============================================================
555
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800556oom_kill_allocating_task
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800557
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800558This enables or disables killing the OOM-triggering task in
559out-of-memory situations.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800560
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800561If this is set to zero, the OOM killer will scan through the entire
562tasklist and select a task based on heuristics to kill. This normally
563selects a rogue memory-hogging task that frees up a large amount of
564memory when killed.
565
566If this is set to non-zero, the OOM killer simply kills the task that
567triggered the out-of-memory condition. This avoids the expensive
568tasklist scan.
569
570If panic_on_oom is selected, it takes precedence over whatever value
571is used in oom_kill_allocating_task.
572
573The default value is 0.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000574
575==============================================================
576
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800577overcommit_memory:
Paul Mundtdd8632a2009-01-08 12:04:47 +0000578
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800579This value contains a flag that enables memory overcommitment.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000580
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800581When this flag is 0, the kernel attempts to estimate the amount
582of free memory left when userspace requests more memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000583
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800584When this flag is 1, the kernel pretends there is always enough
585memory until it actually runs out.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000586
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800587When this flag is 2, the kernel uses a "never overcommit"
588policy that attempts to prevent any overcommit of memory.
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -0700589Note that user_reserve_kbytes affects this policy.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000590
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800591This feature can be very useful because there are a lot of
592programs that malloc() huge amounts of memory "just-in-case"
593and don't use much of it.
594
595The default value is 0.
596
597See Documentation/vm/overcommit-accounting and
598security/commoncap.c::cap_vm_enough_memory() for more information.
599
600==============================================================
601
602overcommit_ratio:
603
604When overcommit_memory is set to 2, the committed address
605space is not permitted to exceed swap plus this percentage
606of physical RAM. See above.
607
608==============================================================
609
610page-cluster
611
Christian Ehrhardtdf858fa2012-07-31 16:41:46 -0700612page-cluster controls the number of pages up to which consecutive pages
613are read in from swap in a single attempt. This is the swap counterpart
614to page cache readahead.
615The mentioned consecutivity is not in terms of virtual/physical addresses,
616but consecutive on swap space - that means they were swapped out together.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800617
618It is a logarithmic value - setting it to zero means "1 page", setting
619it to 1 means "2 pages", setting it to 2 means "4 pages", etc.
Christian Ehrhardtdf858fa2012-07-31 16:41:46 -0700620Zero disables swap readahead completely.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800621
622The default value is three (eight pages at a time). There may be some
623small benefits in tuning this to a different value if your workload is
624swap-intensive.
625
Christian Ehrhardtdf858fa2012-07-31 16:41:46 -0700626Lower values mean lower latencies for initial faults, but at the same time
627extra faults and I/O delays for following faults if they would have been part of
628that consecutive pages readahead would have brought in.
629
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800630=============================================================
631
632panic_on_oom
633
634This enables or disables panic on out-of-memory feature.
635
636If this is set to 0, the kernel will kill some rogue process,
637called oom_killer. Usually, oom_killer can kill rogue processes and
638system will survive.
639
640If this is set to 1, the kernel panics when out-of-memory happens.
641However, if a process limits using nodes by mempolicy/cpusets,
642and those nodes become memory exhaustion status, one process
643may be killed by oom-killer. No panic occurs in this case.
644Because other nodes' memory may be free. This means system total status
645may be not fatal yet.
646
647If this is set to 2, the kernel panics compulsorily even on the
KAMEZAWA Hiroyukidaaf1e62010-03-10 15:22:32 -0800648above-mentioned. Even oom happens under memory cgroup, the whole
649system panics.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800650
651The default value is 0.
6521 and 2 are for failover of clustering. Please select either
653according to your policy of failover.
KAMEZAWA Hiroyukidaaf1e62010-03-10 15:22:32 -0800654panic_on_oom=2+kdump gives you very strong tool to investigate
655why oom happens. You can get snapshot.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800656
657=============================================================
658
659percpu_pagelist_fraction
660
661This is the fraction of pages at most (high mark pcp->high) in each zone that
662are allocated for each per cpu page list. The min value for this is 8. It
663means that we don't allow more than 1/8th of pages in each zone to be
664allocated in any single per_cpu_pagelist. This entry only changes the value
665of hot per cpu pagelists. User can specify a number like 100 to allocate
6661/100th of each zone to each per cpu page list.
667
668The batch value of each per cpu pagelist is also updated as a result. It is
669set to pcp->high/4. The upper limit of batch is (PAGE_SHIFT * 8)
670
671The initial value is zero. Kernel does not use this value at boot time to set
672the high water marks for each per cpu page list.
673
674==============================================================
675
676stat_interval
677
678The time interval between which vm statistics are updated. The default
679is 1 second.
680
681==============================================================
682
683swappiness
684
685This control is used to define how aggressive the kernel will swap
686memory pages. Higher values will increase agressiveness, lower values
Matt LaPlante19f59462009-04-27 15:06:31 +0200687decrease the amount of swap.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800688
689The default value is 60.
690
691==============================================================
692
Andrew Shewmakerc9b1d092013-04-29 15:08:10 -0700693- user_reserve_kbytes
694
695When overcommit_memory is set to 2, "never overommit" mode, reserve
696min(3% of current process size, user_reserve_kbytes) of free memory.
697This is intended to prevent a user from starting a single memory hogging
698process, such that they cannot recover (kill the hog).
699
700user_reserve_kbytes defaults to min(3% of the current process size, 128MB).
701
702If this is reduced to zero, then the user will be allowed to allocate
703all free memory with a single process, minus admin_reserve_kbytes.
704Any subsequent attempts to execute a command will result in
705"fork: Cannot allocate memory".
706
707Changing this takes effect whenever an application requests memory.
708
709==============================================================
710
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800711vfs_cache_pressure
712------------------
713
714Controls the tendency of the kernel to reclaim the memory which is used for
715caching of directory and inode objects.
716
717At the default value of vfs_cache_pressure=100 the kernel will attempt to
718reclaim dentries and inodes at a "fair" rate with respect to pagecache and
719swapcache reclaim. Decreasing vfs_cache_pressure causes the kernel to prefer
Jan Kara55c37a82009-09-21 17:01:40 -0700720to retain dentry and inode caches. When vfs_cache_pressure=0, the kernel will
721never reclaim dentries and inodes due to memory pressure and this can easily
722lead to out-of-memory conditions. Increasing vfs_cache_pressure beyond 100
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800723causes the kernel to prefer to reclaim dentries and inodes.
724
725==============================================================
726
727zone_reclaim_mode:
728
729Zone_reclaim_mode allows someone to set more or less aggressive approaches to
730reclaim memory when a zone runs out of memory. If it is set to zero then no
731zone reclaim occurs. Allocations will be satisfied from other zones / nodes
732in the system.
733
734This is value ORed together of
735
7361 = Zone reclaim on
7372 = Zone reclaim writes dirty pages out
7384 = Zone reclaim swaps pages
739
740zone_reclaim_mode is set during bootup to 1 if it is determined that pages
741from remote zones will cause a measurable performance reduction. The
742page allocator will then reclaim easily reusable pages (those page
743cache pages that are currently not used) before allocating off node pages.
744
745It may be beneficial to switch off zone reclaim if the system is
746used for a file server and all of memory should be used for caching files
747from disk. In that case the caching effect is more important than
748data locality.
749
750Allowing zone reclaim to write out pages stops processes that are
751writing large amounts of data from dirtying pages on other nodes. Zone
752reclaim will write out dirty pages if a zone fills up and so effectively
753throttle the process. This may decrease the performance of a single process
754since it cannot use all of system memory to buffer the outgoing writes
755anymore but it preserve the memory on other nodes so that the performance
756of other processes running on other nodes will not be affected.
757
758Allowing regular swap effectively restricts allocations to the local
759node unless explicitly overridden by memory policies or cpuset
760configurations.
761
762============ End of Document =================================