blob: e6fb1ec2744b180d25bd41e6a672e5627dd8e971 [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
22- dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070023- dirty_background_ratio
Peter W Morrealedb0fb182009-01-15 13:50:42 -080024- dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070025- dirty_expire_centisecs
Peter W Morrealedb0fb182009-01-15 13:50:42 -080026- dirty_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070027- dirty_writeback_centisecs
Peter W Morrealedb0fb182009-01-15 13:50:42 -080028- drop_caches
29- hugepages_treat_as_movable
30- hugetlb_shm_group
31- laptop_mode
32- legacy_va_layout
33- lowmem_reserve_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070034- max_map_count
35- min_free_kbytes
Christoph Lameter0ff38492006-09-25 23:31:52 -070036- min_slab_ratio
Peter W Morrealedb0fb182009-01-15 13:50:42 -080037- min_unmapped_ratio
38- mmap_min_addr
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -080039- nr_hugepages
40- nr_overcommit_hugepages
Peter W Morrealedb0fb182009-01-15 13:50:42 -080041- nr_pdflush_threads
42- nr_trim_pages (only if CONFIG_MMU=n)
43- numa_zonelist_order
44- oom_dump_tasks
45- oom_kill_allocating_task
46- overcommit_memory
47- overcommit_ratio
48- page-cluster
49- panic_on_oom
50- percpu_pagelist_fraction
51- stat_interval
52- swappiness
53- vfs_cache_pressure
54- zone_reclaim_mode
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57==============================================================
58
Peter W Morrealedb0fb182009-01-15 13:50:42 -080059block_dump
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Peter W Morrealedb0fb182009-01-15 13:50:42 -080061block_dump enables block I/O debugging when set to a nonzero value. More
62information on block I/O debugging is in Documentation/laptops/laptop-mode.txt.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64==============================================================
65
Peter W Morrealedb0fb182009-01-15 13:50:42 -080066dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Peter W Morrealedb0fb182009-01-15 13:50:42 -080068Contains the amount of dirty memory at which the pdflush background writeback
69daemon will start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Peter W Morrealedb0fb182009-01-15 13:50:42 -080071If dirty_background_bytes is written, dirty_background_ratio becomes a function
72of its value (dirty_background_bytes / the amount of dirtyable system memory).
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74==============================================================
75
Peter W Morrealedb0fb182009-01-15 13:50:42 -080076dirty_background_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Peter W Morrealedb0fb182009-01-15 13:50:42 -080078Contains, as a percentage of total system memory, the number of pages at which
79the pdflush background writeback daemon will start writing out dirty data.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81==============================================================
82
Peter W Morrealedb0fb182009-01-15 13:50:42 -080083dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Peter W Morrealedb0fb182009-01-15 13:50:42 -080085Contains the amount of dirty memory at which a process generating disk writes
86will itself start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Peter W Morrealedb0fb182009-01-15 13:50:42 -080088If dirty_bytes is written, dirty_ratio becomes a function of its value
89(dirty_bytes / the amount of dirtyable system memory).
90
Andrea Righi9e4a5bd2009-04-30 15:08:57 -070091Note: the minimum value allowed for dirty_bytes is two pages (in bytes); any
92value lower than this limit will be ignored and the old configuration will be
93retained.
94
Peter W Morrealedb0fb182009-01-15 13:50:42 -080095==============================================================
96
97dirty_expire_centisecs
98
99This tunable is used to define when dirty data is old enough to be eligible
100for writeout by the pdflush daemons. It is expressed in 100'ths of a second.
101Data which has been dirty in-memory for longer than this interval will be
102written out next time a pdflush daemon wakes up.
103
104==============================================================
105
106dirty_ratio
107
108Contains, as a percentage of total system memory, the number of pages at which
109a process which is generating disk writes will itself start writing out dirty
110data.
111
112==============================================================
113
114dirty_writeback_centisecs
115
116The pdflush writeback daemons will periodically wake up and write `old' data
117out to disk. This tunable expresses the interval between those wakeups, in
118100'ths of a second.
119
120Setting this to zero disables periodic writeback altogether.
121
122==============================================================
123
124drop_caches
125
126Writing to this will cause the kernel to drop clean caches, dentries and
127inodes from memory, causing that memory to become free.
128
129To free pagecache:
130 echo 1 > /proc/sys/vm/drop_caches
131To free dentries and inodes:
132 echo 2 > /proc/sys/vm/drop_caches
133To free pagecache, dentries and inodes:
134 echo 3 > /proc/sys/vm/drop_caches
135
136As this is a non-destructive operation and dirty objects are not freeable, the
137user should run `sync' first.
138
139==============================================================
140
141hugepages_treat_as_movable
142
143This parameter is only useful when kernelcore= is specified at boot time to
144create ZONE_MOVABLE for pages that may be reclaimed or migrated. Huge pages
145are not movable so are not normally allocated from ZONE_MOVABLE. A non-zero
146value written to hugepages_treat_as_movable allows huge pages to be allocated
147from ZONE_MOVABLE.
148
149Once enabled, the ZONE_MOVABLE is treated as an area of memory the huge
150pages pool can easily grow or shrink within. Assuming that applications are
151not running that mlock() a lot of memory, it is likely the huge pages pool
152can grow to the size of ZONE_MOVABLE by repeatedly entering the desired value
153into nr_hugepages and triggering page reclaim.
154
155==============================================================
156
157hugetlb_shm_group
158
159hugetlb_shm_group contains group id that is allowed to create SysV
160shared memory segment using hugetlb page.
161
162==============================================================
163
164laptop_mode
165
166laptop_mode is a knob that controls "laptop mode". All the things that are
167controlled by this knob are discussed in Documentation/laptops/laptop-mode.txt.
168
169==============================================================
170
171legacy_va_layout
172
173If non-zero, this sysctl disables the new 32-bit mmap mmap layout - the kernel
174will use the legacy (2.4) layout for all processes.
175
176==============================================================
177
178lowmem_reserve_ratio
179
180For some specialised workloads on highmem machines it is dangerous for
181the kernel to allow process memory to be allocated from the "lowmem"
182zone. This is because that memory could then be pinned via the mlock()
183system call, or by unavailability of swapspace.
184
185And on large highmem machines this lack of reclaimable lowmem memory
186can be fatal.
187
188So the Linux page allocator has a mechanism which prevents allocations
189which _could_ use highmem from using too much lowmem. This means that
190a certain amount of lowmem is defended from the possibility of being
191captured into pinned user memory.
192
193(The same argument applies to the old 16 megabyte ISA DMA region. This
194mechanism will also defend that region from allocations which could use
195highmem or lowmem).
196
197The `lowmem_reserve_ratio' tunable determines how aggressive the kernel is
198in defending these lower zones.
199
200If you have a machine which uses highmem or ISA DMA and your
201applications are using mlock(), or if you are running with no swap then
202you probably should change the lowmem_reserve_ratio setting.
203
204The lowmem_reserve_ratio is an array. You can see them by reading this file.
205-
206% cat /proc/sys/vm/lowmem_reserve_ratio
207256 256 32
208-
209Note: # of this elements is one fewer than number of zones. Because the highest
210 zone's value is not necessary for following calculation.
211
212But, these values are not used directly. The kernel calculates # of protection
213pages for each zones from them. These are shown as array of protection pages
214in /proc/zoneinfo like followings. (This is an example of x86-64 box).
215Each zone has an array of protection pages like this.
216
217-
218Node 0, zone DMA
219 pages free 1355
220 min 3
221 low 3
222 high 4
223 :
224 :
225 numa_other 0
226 protection: (0, 2004, 2004, 2004)
227 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
228 pagesets
229 cpu: 0 pcp: 0
230 :
231-
232These protections are added to score to judge whether this zone should be used
233for page allocation or should be reclaimed.
234
235In this example, if normal pages (index=2) are required to this DMA zone and
Mel Gorman41858962009-06-16 15:32:12 -0700236watermark[WMARK_HIGH] is used for watermark, the kernel judges this zone should
237not be used because pages_free(1355) is smaller than watermark + protection[2]
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800238(4 + 2004 = 2008). If this protection value is 0, this zone would be used for
239normal page requirement. If requirement is DMA zone(index=0), protection[0]
240(=0) is used.
241
242zone[i]'s protection[j] is calculated by following expression.
243
244(i < j):
245 zone[i]->protection[j]
246 = (total sums of present_pages from zone[i+1] to zone[j] on the node)
247 / lowmem_reserve_ratio[i];
248(i = j):
249 (should not be protected. = 0;
250(i > j):
251 (not necessary, but looks 0)
252
253The default values of lowmem_reserve_ratio[i] are
254 256 (if zone[i] means DMA or DMA32 zone)
255 32 (others).
256As above expression, they are reciprocal number of ratio.
257256 means 1/256. # of protection pages becomes about "0.39%" of total present
258pages of higher zones on the node.
259
260If you would like to protect more pages, smaller values are effective.
261The minimum value is 1 (1/1 -> 100%).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263==============================================================
264
265max_map_count:
266
267This file contains the maximum number of memory map areas a process
268may have. Memory map areas are used as a side-effect of calling
269malloc, directly by mmap and mprotect, and also when loading shared
270libraries.
271
272While most applications need less than a thousand maps, certain
273programs, particularly malloc debuggers, may consume lots of them,
274e.g., up to one or two maps per allocation.
275
276The default value is 65536.
277
278==============================================================
279
280min_free_kbytes:
281
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800282This is used to force the Linux VM to keep a minimum number
Mel Gorman41858962009-06-16 15:32:12 -0700283of kilobytes free. The VM uses this number to compute a
284watermark[WMARK_MIN] value for each lowmem zone in the system.
285Each lowmem zone gets a number of reserved free pages based
286proportionally on its size.
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800287
Matt LaPlanted9195882008-07-25 19:45:33 -0700288Some minimal amount of memory is needed to satisfy PF_MEMALLOC
Pavel Machek24950892007-10-16 23:31:28 -0700289allocations; if you set this to lower than 1024KB, your system will
290become subtly broken, and prone to deadlock under high loads.
291
292Setting this too high will OOM your machine instantly.
293
Christoph Lameter96146342006-07-03 00:24:13 -0700294=============================================================
295
Christoph Lameter0ff38492006-09-25 23:31:52 -0700296min_slab_ratio:
297
298This is available only on NUMA kernels.
299
300A percentage of the total pages in each zone. On Zone reclaim
301(fallback from the local zone occurs) slabs will be reclaimed if more
302than this percentage of pages in a zone are reclaimable slab pages.
303This insures that the slab growth stays under control even in NUMA
304systems that rarely perform global reclaim.
305
306The default is 5 percent.
307
308Note that slab reclaim is triggered in a per zone / node fashion.
309The process of reclaiming slab memory is currently not node specific
310and may not be fast.
311
312=============================================================
313
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800314min_unmapped_ratio:
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700315
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800316This is available only on NUMA kernels.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700317
Mel Gorman90afa5d2009-06-16 15:33:20 -0700318This is a percentage of the total pages in each zone. Zone reclaim will
319only occur if more than this percentage of pages are in a state that
320zone_reclaim_mode allows to be reclaimed.
321
322If zone_reclaim_mode has the value 4 OR'd, then the percentage is compared
323against all file-backed unmapped pages including swapcache pages and tmpfs
324files. Otherwise, only unmapped pages backed by normal files but not tmpfs
325files and similar are considered.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700326
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800327The default is 1 percent.
David Rientjesfe071d72007-10-16 23:25:56 -0700328
Eric Parised032182007-06-28 15:55:21 -0400329==============================================================
330
331mmap_min_addr
332
333This file indicates the amount of address space which a user process will
334be restricted from mmaping. Since kernel null dereference bugs could
335accidentally operate based on the information in the first couple of pages
336of memory userspace processes should not be allowed to write to them. By
337default this value is set to 0 and no protections will be enforced by the
338security module. Setting this value to something like 64k will allow the
339vast majority of applications to work correctly and provide defense in depth
340against future potential kernel bugs.
341
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700342==============================================================
343
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800344nr_hugepages
345
346Change the minimum size of the hugepage pool.
347
348See Documentation/vm/hugetlbpage.txt
349
350==============================================================
351
352nr_overcommit_hugepages
353
354Change the maximum size of the hugepage pool. The maximum is
355nr_hugepages + nr_overcommit_hugepages.
356
357See Documentation/vm/hugetlbpage.txt
358
359==============================================================
360
361nr_pdflush_threads
362
363The current number of pdflush threads. This value is read-only.
364The value changes according to the number of dirty pages in the system.
365
Matt LaPlante19f59462009-04-27 15:06:31 +0200366When necessary, additional pdflush threads are created, one per second, up to
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800367nr_pdflush_threads_max.
368
369==============================================================
370
371nr_trim_pages
372
373This is available only on NOMMU kernels.
374
375This value adjusts the excess page trimming behaviour of power-of-2 aligned
376NOMMU mmap allocations.
377
378A value of 0 disables trimming of allocations entirely, while a value of 1
379trims excess pages aggressively. Any value >= 1 acts as the watermark where
380trimming of allocations is initiated.
381
382The default value is 1.
383
384See Documentation/nommu-mmap.txt for more information.
385
386==============================================================
387
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700388numa_zonelist_order
389
390This sysctl is only for NUMA.
391'where the memory is allocated from' is controlled by zonelists.
392(This documentation ignores ZONE_HIGHMEM/ZONE_DMA32 for simple explanation.
393 you may be able to read ZONE_DMA as ZONE_DMA32...)
394
395In non-NUMA case, a zonelist for GFP_KERNEL is ordered as following.
396ZONE_NORMAL -> ZONE_DMA
397This means that a memory allocation request for GFP_KERNEL will
398get memory from ZONE_DMA only when ZONE_NORMAL is not available.
399
400In NUMA case, you can think of following 2 types of order.
401Assume 2 node NUMA and below is zonelist of Node(0)'s GFP_KERNEL
402
403(A) Node(0) ZONE_NORMAL -> Node(0) ZONE_DMA -> Node(1) ZONE_NORMAL
404(B) Node(0) ZONE_NORMAL -> Node(1) ZONE_NORMAL -> Node(0) ZONE_DMA.
405
406Type(A) offers the best locality for processes on Node(0), but ZONE_DMA
407will be used before ZONE_NORMAL exhaustion. This increases possibility of
408out-of-memory(OOM) of ZONE_DMA because ZONE_DMA is tend to be small.
409
410Type(B) cannot offer the best locality but is more robust against OOM of
411the DMA zone.
412
413Type(A) is called as "Node" order. Type (B) is "Zone" order.
414
415"Node order" orders the zonelists by node, then by zone within each node.
416Specify "[Nn]ode" for zone order
417
418"Zone Order" orders the zonelists by zone type, then by node within each
419zone. Specify "[Zz]one"for zode order.
420
421Specify "[Dd]efault" to request automatic configuration. Autoconfiguration
422will select "node" order in following case.
423(1) if the DMA zone does not exist or
424(2) if the DMA zone comprises greater than 50% of the available memory or
425(3) if any node's DMA zone comprises greater than 60% of its local memory and
426 the amount of local memory is big enough.
427
428Otherwise, "zone" order will be selected. Default order is recommended unless
429this is causing problems for your system/application.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800430
431==============================================================
432
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800433oom_dump_tasks
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800434
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800435Enables a system-wide task dump (excluding kernel threads) to be
436produced when the kernel performs an OOM-killing and includes such
437information as pid, uid, tgid, vm size, rss, cpu, oom_adj score, and
438name. This is helpful to determine why the OOM killer was invoked
439and to identify the rogue task that caused it.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800440
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800441If this is set to zero, this information is suppressed. On very
442large systems with thousands of tasks it may not be feasible to dump
443the memory state information for each one. Such systems should not
444be forced to incur a performance penalty in OOM conditions when the
445information may not be desired.
446
447If this is set to non-zero, this information is shown whenever the
448OOM killer actually kills a memory-hogging task.
449
450The default value is 0.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800451
452==============================================================
453
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800454oom_kill_allocating_task
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800455
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800456This enables or disables killing the OOM-triggering task in
457out-of-memory situations.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800458
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800459If this is set to zero, the OOM killer will scan through the entire
460tasklist and select a task based on heuristics to kill. This normally
461selects a rogue memory-hogging task that frees up a large amount of
462memory when killed.
463
464If this is set to non-zero, the OOM killer simply kills the task that
465triggered the out-of-memory condition. This avoids the expensive
466tasklist scan.
467
468If panic_on_oom is selected, it takes precedence over whatever value
469is used in oom_kill_allocating_task.
470
471The default value is 0.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000472
473==============================================================
474
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800475overcommit_memory:
Paul Mundtdd8632a2009-01-08 12:04:47 +0000476
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800477This value contains a flag that enables memory overcommitment.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000478
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800479When this flag is 0, the kernel attempts to estimate the amount
480of free memory left when userspace requests more memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000481
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800482When this flag is 1, the kernel pretends there is always enough
483memory until it actually runs out.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000484
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800485When this flag is 2, the kernel uses a "never overcommit"
486policy that attempts to prevent any overcommit of memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000487
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800488This feature can be very useful because there are a lot of
489programs that malloc() huge amounts of memory "just-in-case"
490and don't use much of it.
491
492The default value is 0.
493
494See Documentation/vm/overcommit-accounting and
495security/commoncap.c::cap_vm_enough_memory() for more information.
496
497==============================================================
498
499overcommit_ratio:
500
501When overcommit_memory is set to 2, the committed address
502space is not permitted to exceed swap plus this percentage
503of physical RAM. See above.
504
505==============================================================
506
507page-cluster
508
509page-cluster controls the number of pages which are written to swap in
510a single attempt. The swap I/O size.
511
512It is a logarithmic value - setting it to zero means "1 page", setting
513it to 1 means "2 pages", setting it to 2 means "4 pages", etc.
514
515The default value is three (eight pages at a time). There may be some
516small benefits in tuning this to a different value if your workload is
517swap-intensive.
518
519=============================================================
520
521panic_on_oom
522
523This enables or disables panic on out-of-memory feature.
524
525If this is set to 0, the kernel will kill some rogue process,
526called oom_killer. Usually, oom_killer can kill rogue processes and
527system will survive.
528
529If this is set to 1, the kernel panics when out-of-memory happens.
530However, if a process limits using nodes by mempolicy/cpusets,
531and those nodes become memory exhaustion status, one process
532may be killed by oom-killer. No panic occurs in this case.
533Because other nodes' memory may be free. This means system total status
534may be not fatal yet.
535
536If this is set to 2, the kernel panics compulsorily even on the
537above-mentioned.
538
539The default value is 0.
5401 and 2 are for failover of clustering. Please select either
541according to your policy of failover.
542
543=============================================================
544
545percpu_pagelist_fraction
546
547This is the fraction of pages at most (high mark pcp->high) in each zone that
548are allocated for each per cpu page list. The min value for this is 8. It
549means that we don't allow more than 1/8th of pages in each zone to be
550allocated in any single per_cpu_pagelist. This entry only changes the value
551of hot per cpu pagelists. User can specify a number like 100 to allocate
5521/100th of each zone to each per cpu page list.
553
554The batch value of each per cpu pagelist is also updated as a result. It is
555set to pcp->high/4. The upper limit of batch is (PAGE_SHIFT * 8)
556
557The initial value is zero. Kernel does not use this value at boot time to set
558the high water marks for each per cpu page list.
559
560==============================================================
561
562stat_interval
563
564The time interval between which vm statistics are updated. The default
565is 1 second.
566
567==============================================================
568
569swappiness
570
571This control is used to define how aggressive the kernel will swap
572memory pages. Higher values will increase agressiveness, lower values
Matt LaPlante19f59462009-04-27 15:06:31 +0200573decrease the amount of swap.
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800574
575The default value is 60.
576
577==============================================================
578
579vfs_cache_pressure
580------------------
581
582Controls the tendency of the kernel to reclaim the memory which is used for
583caching of directory and inode objects.
584
585At the default value of vfs_cache_pressure=100 the kernel will attempt to
586reclaim dentries and inodes at a "fair" rate with respect to pagecache and
587swapcache reclaim. Decreasing vfs_cache_pressure causes the kernel to prefer
Jan Kara55c37a82009-09-21 17:01:40 -0700588to retain dentry and inode caches. When vfs_cache_pressure=0, the kernel will
589never reclaim dentries and inodes due to memory pressure and this can easily
590lead to out-of-memory conditions. Increasing vfs_cache_pressure beyond 100
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800591causes the kernel to prefer to reclaim dentries and inodes.
592
593==============================================================
594
595zone_reclaim_mode:
596
597Zone_reclaim_mode allows someone to set more or less aggressive approaches to
598reclaim memory when a zone runs out of memory. If it is set to zero then no
599zone reclaim occurs. Allocations will be satisfied from other zones / nodes
600in the system.
601
602This is value ORed together of
603
6041 = Zone reclaim on
6052 = Zone reclaim writes dirty pages out
6064 = Zone reclaim swaps pages
607
608zone_reclaim_mode is set during bootup to 1 if it is determined that pages
609from remote zones will cause a measurable performance reduction. The
610page allocator will then reclaim easily reusable pages (those page
611cache pages that are currently not used) before allocating off node pages.
612
613It may be beneficial to switch off zone reclaim if the system is
614used for a file server and all of memory should be used for caching files
615from disk. In that case the caching effect is more important than
616data locality.
617
618Allowing zone reclaim to write out pages stops processes that are
619writing large amounts of data from dirtying pages on other nodes. Zone
620reclaim will write out dirty pages if a zone fills up and so effectively
621throttle the process. This may decrease the performance of a single process
622since it cannot use all of system memory to buffer the outgoing writes
623anymore but it preserve the memory on other nodes so that the performance
624of other processes running on other nodes will not be affected.
625
626Allowing regular swap effectively restricts allocations to the local
627node unless explicitly overridden by memory policies or cpuset
628configurations.
629
630============ End of Document =================================