blob: 56dd29b97a91b2283b15d3438f0da3a151e228ed [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
30- hugepages_treat_as_movable
31- hugetlb_shm_group
32- laptop_mode
33- legacy_va_layout
34- lowmem_reserve_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070035- max_map_count
Andi Kleen6a460792009-09-16 11:50:15 +020036- memory_failure_early_kill
37- memory_failure_recovery
Linus Torvalds1da177e2005-04-16 15:20:36 -070038- min_free_kbytes
Christoph Lameter0ff38492006-09-25 23:31:52 -070039- min_slab_ratio
Peter W Morrealedb0fb182009-01-15 13:50:42 -080040- min_unmapped_ratio
41- mmap_min_addr
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -080042- nr_hugepages
43- nr_overcommit_hugepages
Peter W Morrealedb0fb182009-01-15 13:50:42 -080044- nr_pdflush_threads
45- 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
56- vfs_cache_pressure
57- zone_reclaim_mode
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059==============================================================
60
Peter W Morrealedb0fb182009-01-15 13:50:42 -080061block_dump
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Peter W Morrealedb0fb182009-01-15 13:50:42 -080063block_dump enables block I/O debugging when set to a nonzero value. More
64information on block I/O debugging is in Documentation/laptops/laptop-mode.txt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66==============================================================
67
Mel Gorman76ab0f52010-05-24 14:32:28 -070068compact_memory
69
70Available only when CONFIG_COMPACTION is set. When 1 is written to the file,
71all zones are compacted such that free memory is available in contiguous
72blocks where possible. This can be important for example in the allocation of
73huge pages although processes will also directly compact memory as required.
74
75==============================================================
76
Peter W Morrealedb0fb182009-01-15 13:50:42 -080077dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Peter W Morrealedb0fb182009-01-15 13:50:42 -080079Contains the amount of dirty memory at which the pdflush background writeback
80daemon will start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Peter W Morrealedb0fb182009-01-15 13:50:42 -080082If dirty_background_bytes is written, dirty_background_ratio becomes a function
83of its value (dirty_background_bytes / the amount of dirtyable system memory).
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85==============================================================
86
Peter W Morrealedb0fb182009-01-15 13:50:42 -080087dirty_background_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Peter W Morrealedb0fb182009-01-15 13:50:42 -080089Contains, as a percentage of total system memory, the number of pages at which
90the pdflush background writeback daemon will start writing out dirty data.
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92==============================================================
93
Peter W Morrealedb0fb182009-01-15 13:50:42 -080094dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Peter W Morrealedb0fb182009-01-15 13:50:42 -080096Contains the amount of dirty memory at which a process generating disk writes
97will itself start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Peter W Morrealedb0fb182009-01-15 13:50:42 -080099If dirty_bytes is written, dirty_ratio becomes a function of its value
100(dirty_bytes / the amount of dirtyable system memory).
101
Andrea Righi9e4a5bd2009-04-30 15:08:57 -0700102Note: the minimum value allowed for dirty_bytes is two pages (in bytes); any
103value lower than this limit will be ignored and the old configuration will be
104retained.
105
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800106==============================================================
107
108dirty_expire_centisecs
109
110This tunable is used to define when dirty data is old enough to be eligible
111for writeout by the pdflush daemons. It is expressed in 100'ths of a second.
112Data which has been dirty in-memory for longer than this interval will be
113written out next time a pdflush daemon wakes up.
114
115==============================================================
116
117dirty_ratio
118
119Contains, as a percentage of total system memory, the number of pages at which
120a process which is generating disk writes will itself start writing out dirty
121data.
122
123==============================================================
124
125dirty_writeback_centisecs
126
127The pdflush writeback daemons will periodically wake up and write `old' data
128out to disk. This tunable expresses the interval between those wakeups, in
129100'ths of a second.
130
131Setting this to zero disables periodic writeback altogether.
132
133==============================================================
134
135drop_caches
136
137Writing to this will cause the kernel to drop clean caches, dentries and
138inodes from memory, causing that memory to become free.
139
140To free pagecache:
141 echo 1 > /proc/sys/vm/drop_caches
142To free dentries and inodes:
143 echo 2 > /proc/sys/vm/drop_caches
144To free pagecache, dentries and inodes:
145 echo 3 > /proc/sys/vm/drop_caches
146
147As this is a non-destructive operation and dirty objects are not freeable, the
148user should run `sync' first.
149
150==============================================================
151
152hugepages_treat_as_movable
153
154This parameter is only useful when kernelcore= is specified at boot time to
155create ZONE_MOVABLE for pages that may be reclaimed or migrated. Huge pages
156are not movable so are not normally allocated from ZONE_MOVABLE. A non-zero
157value written to hugepages_treat_as_movable allows huge pages to be allocated
158from ZONE_MOVABLE.
159
160Once enabled, the ZONE_MOVABLE is treated as an area of memory the huge
161pages pool can easily grow or shrink within. Assuming that applications are
162not running that mlock() a lot of memory, it is likely the huge pages pool
163can grow to the size of ZONE_MOVABLE by repeatedly entering the desired value
164into nr_hugepages and triggering page reclaim.
165
166==============================================================
167
168hugetlb_shm_group
169
170hugetlb_shm_group contains group id that is allowed to create SysV
171shared memory segment using hugetlb page.
172
173==============================================================
174
175laptop_mode
176
177laptop_mode is a knob that controls "laptop mode". All the things that are
178controlled by this knob are discussed in Documentation/laptops/laptop-mode.txt.
179
180==============================================================
181
182legacy_va_layout
183
184If non-zero, this sysctl disables the new 32-bit mmap mmap layout - the kernel
185will use the legacy (2.4) layout for all processes.
186
187==============================================================
188
189lowmem_reserve_ratio
190
191For some specialised workloads on highmem machines it is dangerous for
192the kernel to allow process memory to be allocated from the "lowmem"
193zone. This is because that memory could then be pinned via the mlock()
194system call, or by unavailability of swapspace.
195
196And on large highmem machines this lack of reclaimable lowmem memory
197can be fatal.
198
199So the Linux page allocator has a mechanism which prevents allocations
200which _could_ use highmem from using too much lowmem. This means that
201a certain amount of lowmem is defended from the possibility of being
202captured into pinned user memory.
203
204(The same argument applies to the old 16 megabyte ISA DMA region. This
205mechanism will also defend that region from allocations which could use
206highmem or lowmem).
207
208The `lowmem_reserve_ratio' tunable determines how aggressive the kernel is
209in defending these lower zones.
210
211If you have a machine which uses highmem or ISA DMA and your
212applications are using mlock(), or if you are running with no swap then
213you probably should change the lowmem_reserve_ratio setting.
214
215The lowmem_reserve_ratio is an array. You can see them by reading this file.
216-
217% cat /proc/sys/vm/lowmem_reserve_ratio
218256 256 32
219-
220Note: # of this elements is one fewer than number of zones. Because the highest
221 zone's value is not necessary for following calculation.
222
223But, these values are not used directly. The kernel calculates # of protection
224pages for each zones from them. These are shown as array of protection pages
225in /proc/zoneinfo like followings. (This is an example of x86-64 box).
226Each zone has an array of protection pages like this.
227
228-
229Node 0, zone DMA
230 pages free 1355
231 min 3
232 low 3
233 high 4
234 :
235 :
236 numa_other 0
237 protection: (0, 2004, 2004, 2004)
238 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
239 pagesets
240 cpu: 0 pcp: 0
241 :
242-
243These protections are added to score to judge whether this zone should be used
244for page allocation or should be reclaimed.
245
246In this example, if normal pages (index=2) are required to this DMA zone and
Mel Gorman41858962009-06-16 15:32:12 -0700247watermark[WMARK_HIGH] is used for watermark, the kernel judges this zone should
248not be used because pages_free(1355) is smaller than watermark + protection[2]
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800249(4 + 2004 = 2008). If this protection value is 0, this zone would be used for
250normal page requirement. If requirement is DMA zone(index=0), protection[0]
251(=0) is used.
252
253zone[i]'s protection[j] is calculated by following expression.
254
255(i < j):
256 zone[i]->protection[j]
257 = (total sums of present_pages from zone[i+1] to zone[j] on the node)
258 / lowmem_reserve_ratio[i];
259(i = j):
260 (should not be protected. = 0;
261(i > j):
262 (not necessary, but looks 0)
263
264The default values of lowmem_reserve_ratio[i] are
265 256 (if zone[i] means DMA or DMA32 zone)
266 32 (others).
267As above expression, they are reciprocal number of ratio.
268256 means 1/256. # of protection pages becomes about "0.39%" of total present
269pages of higher zones on the node.
270
271If you would like to protect more pages, smaller values are effective.
272The minimum value is 1 (1/1 -> 100%).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274==============================================================
275
276max_map_count:
277
278This file contains the maximum number of memory map areas a process
279may have. Memory map areas are used as a side-effect of calling
280malloc, directly by mmap and mprotect, and also when loading shared
281libraries.
282
283While most applications need less than a thousand maps, certain
284programs, particularly malloc debuggers, may consume lots of them,
285e.g., up to one or two maps per allocation.
286
287The default value is 65536.
288
Andi Kleen6a460792009-09-16 11:50:15 +0200289=============================================================
290
291memory_failure_early_kill:
292
293Control how to kill processes when uncorrected memory error (typically
294a 2bit error in a memory module) is detected in the background by hardware
295that cannot be handled by the kernel. In some cases (like the page
296still having a valid copy on disk) the kernel will handle the failure
297transparently without affecting any applications. But if there is
298no other uptodate copy of the data it will kill to prevent any data
299corruptions from propagating.
300
3011: Kill all processes that have the corrupted and not reloadable page mapped
302as soon as the corruption is detected. Note this is not supported
303for a few types of pages, like kernel internally allocated data or
304the swap cache, but works for the majority of user pages.
305
3060: Only unmap the corrupted page from all processes and only kill a process
307who tries to access it.
308
309The kill is done using a catchable SIGBUS with BUS_MCEERR_AO, so processes can
310handle this if they want to.
311
312This is only active on architectures/platforms with advanced machine
313check handling and depends on the hardware capabilities.
314
315Applications can override this setting individually with the PR_MCE_KILL prctl
316
317==============================================================
318
319memory_failure_recovery
320
321Enable memory failure recovery (when supported by the platform)
322
3231: Attempt recovery.
324
3250: Always panic on a memory failure.
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327==============================================================
328
329min_free_kbytes:
330
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800331This is used to force the Linux VM to keep a minimum number
Mel Gorman41858962009-06-16 15:32:12 -0700332of kilobytes free. The VM uses this number to compute a
333watermark[WMARK_MIN] value for each lowmem zone in the system.
334Each lowmem zone gets a number of reserved free pages based
335proportionally on its size.
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800336
Matt LaPlanted9195882008-07-25 19:45:33 -0700337Some minimal amount of memory is needed to satisfy PF_MEMALLOC
Pavel Machek24950892007-10-16 23:31:28 -0700338allocations; if you set this to lower than 1024KB, your system will
339become subtly broken, and prone to deadlock under high loads.
340
341Setting this too high will OOM your machine instantly.
342
Christoph Lameter96146342006-07-03 00:24:13 -0700343=============================================================
344
Christoph Lameter0ff38492006-09-25 23:31:52 -0700345min_slab_ratio:
346
347This is available only on NUMA kernels.
348
349A percentage of the total pages in each zone. On Zone reclaim
350(fallback from the local zone occurs) slabs will be reclaimed if more
351than this percentage of pages in a zone are reclaimable slab pages.
352This insures that the slab growth stays under control even in NUMA
353systems that rarely perform global reclaim.
354
355The default is 5 percent.
356
357Note that slab reclaim is triggered in a per zone / node fashion.
358The process of reclaiming slab memory is currently not node specific
359and may not be fast.
360
361=============================================================
362
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800363min_unmapped_ratio:
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700364
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800365This is available only on NUMA kernels.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700366
Mel Gorman90afa5d2009-06-16 15:33:20 -0700367This is a percentage of the total pages in each zone. Zone reclaim will
368only occur if more than this percentage of pages are in a state that
369zone_reclaim_mode allows to be reclaimed.
370
371If zone_reclaim_mode has the value 4 OR'd, then the percentage is compared
372against all file-backed unmapped pages including swapcache pages and tmpfs
373files. Otherwise, only unmapped pages backed by normal files but not tmpfs
374files and similar are considered.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700375
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800376The default is 1 percent.
David Rientjesfe071d72007-10-16 23:25:56 -0700377
Eric Parised032182007-06-28 15:55:21 -0400378==============================================================
379
380mmap_min_addr
381
382This file indicates the amount of address space which a user process will
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200383be restricted from mmapping. Since kernel null dereference bugs could
Eric Parised032182007-06-28 15:55:21 -0400384accidentally operate based on the information in the first couple of pages
385of memory userspace processes should not be allowed to write to them. By
386default this value is set to 0 and no protections will be enforced by the
387security module. Setting this value to something like 64k will allow the
388vast majority of applications to work correctly and provide defense in depth
389against future potential kernel bugs.
390
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700391==============================================================
392
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800393nr_hugepages
394
395Change the minimum size of the hugepage pool.
396
397See Documentation/vm/hugetlbpage.txt
398
399==============================================================
400
401nr_overcommit_hugepages
402
403Change the maximum size of the hugepage pool. The maximum is
404nr_hugepages + nr_overcommit_hugepages.
405
406See Documentation/vm/hugetlbpage.txt
407
408==============================================================
409
410nr_pdflush_threads
411
412The current number of pdflush threads. This value is read-only.
413The value changes according to the number of dirty pages in the system.
414
Matt LaPlante19f59462009-04-27 15:06:31 +0200415When necessary, additional pdflush threads are created, one per second, up to
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800416nr_pdflush_threads_max.
417
418==============================================================
419
420nr_trim_pages
421
422This is available only on NOMMU kernels.
423
424This value adjusts the excess page trimming behaviour of power-of-2 aligned
425NOMMU mmap allocations.
426
427A value of 0 disables trimming of allocations entirely, while a value of 1
428trims excess pages aggressively. Any value >= 1 acts as the watermark where
429trimming of allocations is initiated.
430
431The default value is 1.
432
433See Documentation/nommu-mmap.txt for more information.
434
435==============================================================
436
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700437numa_zonelist_order
438
439This sysctl is only for NUMA.
440'where the memory is allocated from' is controlled by zonelists.
441(This documentation ignores ZONE_HIGHMEM/ZONE_DMA32 for simple explanation.
442 you may be able to read ZONE_DMA as ZONE_DMA32...)
443
444In non-NUMA case, a zonelist for GFP_KERNEL is ordered as following.
445ZONE_NORMAL -> ZONE_DMA
446This means that a memory allocation request for GFP_KERNEL will
447get memory from ZONE_DMA only when ZONE_NORMAL is not available.
448
449In NUMA case, you can think of following 2 types of order.
450Assume 2 node NUMA and below is zonelist of Node(0)'s GFP_KERNEL
451
452(A) Node(0) ZONE_NORMAL -> Node(0) ZONE_DMA -> Node(1) ZONE_NORMAL
453(B) Node(0) ZONE_NORMAL -> Node(1) ZONE_NORMAL -> Node(0) ZONE_DMA.
454
455Type(A) offers the best locality for processes on Node(0), but ZONE_DMA
456will be used before ZONE_NORMAL exhaustion. This increases possibility of
457out-of-memory(OOM) of ZONE_DMA because ZONE_DMA is tend to be small.
458
459Type(B) cannot offer the best locality but is more robust against OOM of
460the DMA zone.
461
462Type(A) is called as "Node" order. Type (B) is "Zone" order.
463
464"Node order" orders the zonelists by node, then by zone within each node.
465Specify "[Nn]ode" for zone order
466
467"Zone Order" orders the zonelists by zone type, then by node within each
468zone. Specify "[Zz]one"for zode order.
469
470Specify "[Dd]efault" to request automatic configuration. Autoconfiguration
471will select "node" order in following case.
472(1) if the DMA zone does not exist or
473(2) if the DMA zone comprises greater than 50% of the available memory or
474(3) if any node's DMA zone comprises greater than 60% of its local memory and
475 the amount of local memory is big enough.
476
477Otherwise, "zone" order will be selected. Default order is recommended unless
478this is causing problems for your system/application.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800479
480==============================================================
481
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800482oom_dump_tasks
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800483
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800484Enables a system-wide task dump (excluding kernel threads) to be
485produced when the kernel performs an OOM-killing and includes such
486information as pid, uid, tgid, vm size, rss, cpu, oom_adj score, and
487name. This is helpful to determine why the OOM killer was invoked
488and to identify the rogue task that caused it.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800489
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800490If this is set to zero, this information is suppressed. On very
491large systems with thousands of tasks it may not be feasible to dump
492the memory state information for each one. Such systems should not
493be forced to incur a performance penalty in OOM conditions when the
494information may not be desired.
495
496If this is set to non-zero, this information is shown whenever the
497OOM killer actually kills a memory-hogging task.
498
499The default value is 0.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800500
501==============================================================
502
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800503oom_kill_allocating_task
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800504
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800505This enables or disables killing the OOM-triggering task in
506out-of-memory situations.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800507
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800508If this is set to zero, the OOM killer will scan through the entire
509tasklist and select a task based on heuristics to kill. This normally
510selects a rogue memory-hogging task that frees up a large amount of
511memory when killed.
512
513If this is set to non-zero, the OOM killer simply kills the task that
514triggered the out-of-memory condition. This avoids the expensive
515tasklist scan.
516
517If panic_on_oom is selected, it takes precedence over whatever value
518is used in oom_kill_allocating_task.
519
520The default value is 0.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000521
522==============================================================
523
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800524overcommit_memory:
Paul Mundtdd8632a2009-01-08 12:04:47 +0000525
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800526This value contains a flag that enables memory overcommitment.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000527
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800528When this flag is 0, the kernel attempts to estimate the amount
529of free memory left when userspace requests more memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000530
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800531When this flag is 1, the kernel pretends there is always enough
532memory until it actually runs out.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000533
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800534When this flag is 2, the kernel uses a "never overcommit"
535policy that attempts to prevent any overcommit of memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000536
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800537This feature can be very useful because there are a lot of
538programs that malloc() huge amounts of memory "just-in-case"
539and don't use much of it.
540
541The default value is 0.
542
543See Documentation/vm/overcommit-accounting and
544security/commoncap.c::cap_vm_enough_memory() for more information.
545
546==============================================================
547
548overcommit_ratio:
549
550When overcommit_memory is set to 2, the committed address
551space is not permitted to exceed swap plus this percentage
552of physical RAM. See above.
553
554==============================================================
555
556page-cluster
557
558page-cluster controls the number of pages which are written to swap in
559a single attempt. The swap I/O size.
560
561It is a logarithmic value - setting it to zero means "1 page", setting
562it to 1 means "2 pages", setting it to 2 means "4 pages", etc.
563
564The default value is three (eight pages at a time). There may be some
565small benefits in tuning this to a different value if your workload is
566swap-intensive.
567
568=============================================================
569
570panic_on_oom
571
572This enables or disables panic on out-of-memory feature.
573
574If this is set to 0, the kernel will kill some rogue process,
575called oom_killer. Usually, oom_killer can kill rogue processes and
576system will survive.
577
578If this is set to 1, the kernel panics when out-of-memory happens.
579However, if a process limits using nodes by mempolicy/cpusets,
580and those nodes become memory exhaustion status, one process
581may be killed by oom-killer. No panic occurs in this case.
582Because other nodes' memory may be free. This means system total status
583may be not fatal yet.
584
585If this is set to 2, the kernel panics compulsorily even on the
KAMEZAWA Hiroyukidaaf1e62010-03-10 15:22:32 -0800586above-mentioned. Even oom happens under memory cgroup, the whole
587system panics.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800588
589The default value is 0.
5901 and 2 are for failover of clustering. Please select either
591according to your policy of failover.
KAMEZAWA Hiroyukidaaf1e62010-03-10 15:22:32 -0800592panic_on_oom=2+kdump gives you very strong tool to investigate
593why oom happens. You can get snapshot.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800594
595=============================================================
596
597percpu_pagelist_fraction
598
599This is the fraction of pages at most (high mark pcp->high) in each zone that
600are allocated for each per cpu page list. The min value for this is 8. It
601means that we don't allow more than 1/8th of pages in each zone to be
602allocated in any single per_cpu_pagelist. This entry only changes the value
603of hot per cpu pagelists. User can specify a number like 100 to allocate
6041/100th of each zone to each per cpu page list.
605
606The batch value of each per cpu pagelist is also updated as a result. It is
607set to pcp->high/4. The upper limit of batch is (PAGE_SHIFT * 8)
608
609The initial value is zero. Kernel does not use this value at boot time to set
610the high water marks for each per cpu page list.
611
612==============================================================
613
614stat_interval
615
616The time interval between which vm statistics are updated. The default
617is 1 second.
618
619==============================================================
620
621swappiness
622
623This control is used to define how aggressive the kernel will swap
624memory pages. Higher values will increase agressiveness, lower values
Matt LaPlante19f59462009-04-27 15:06:31 +0200625decrease the amount of swap.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800626
627The default value is 60.
628
629==============================================================
630
631vfs_cache_pressure
632------------------
633
634Controls the tendency of the kernel to reclaim the memory which is used for
635caching of directory and inode objects.
636
637At the default value of vfs_cache_pressure=100 the kernel will attempt to
638reclaim dentries and inodes at a "fair" rate with respect to pagecache and
639swapcache reclaim. Decreasing vfs_cache_pressure causes the kernel to prefer
Jan Kara55c37a82009-09-21 17:01:40 -0700640to retain dentry and inode caches. When vfs_cache_pressure=0, the kernel will
641never reclaim dentries and inodes due to memory pressure and this can easily
642lead to out-of-memory conditions. Increasing vfs_cache_pressure beyond 100
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800643causes the kernel to prefer to reclaim dentries and inodes.
644
645==============================================================
646
647zone_reclaim_mode:
648
649Zone_reclaim_mode allows someone to set more or less aggressive approaches to
650reclaim memory when a zone runs out of memory. If it is set to zero then no
651zone reclaim occurs. Allocations will be satisfied from other zones / nodes
652in the system.
653
654This is value ORed together of
655
6561 = Zone reclaim on
6572 = Zone reclaim writes dirty pages out
6584 = Zone reclaim swaps pages
659
660zone_reclaim_mode is set during bootup to 1 if it is determined that pages
661from remote zones will cause a measurable performance reduction. The
662page allocator will then reclaim easily reusable pages (those page
663cache pages that are currently not used) before allocating off node pages.
664
665It may be beneficial to switch off zone reclaim if the system is
666used for a file server and all of memory should be used for caching files
667from disk. In that case the caching effect is more important than
668data locality.
669
670Allowing zone reclaim to write out pages stops processes that are
671writing large amounts of data from dirtying pages on other nodes. Zone
672reclaim will write out dirty pages if a zone fills up and so effectively
673throttle the process. This may decrease the performance of a single process
674since it cannot use all of system memory to buffer the outgoing writes
675anymore but it preserve the memory on other nodes so that the performance
676of other processes running on other nodes will not be affected.
677
678Allowing regular swap effectively restricts allocations to the local
679node unless explicitly overridden by memory policies or cpuset
680configurations.
681
682============ End of Document =================================