blob: 97c4b3284329bebc051ba43840571784652306f4 [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
Peter W Morrealefafd6882009-04-06 19:00:29 -070042- nr_pdflush_threads_min
43- nr_pdflush_threads_max
Peter W Morrealedb0fb182009-01-15 13:50:42 -080044- nr_trim_pages (only if CONFIG_MMU=n)
45- numa_zonelist_order
46- oom_dump_tasks
47- oom_kill_allocating_task
48- overcommit_memory
49- overcommit_ratio
50- page-cluster
51- panic_on_oom
52- percpu_pagelist_fraction
53- stat_interval
54- swappiness
55- vfs_cache_pressure
56- zone_reclaim_mode
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59==============================================================
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
Peter W Morrealedb0fb182009-01-15 13:50:42 -080068dirty_background_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Peter W Morrealedb0fb182009-01-15 13:50:42 -080070Contains the amount of dirty memory at which the pdflush background writeback
71daemon will start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Peter W Morrealedb0fb182009-01-15 13:50:42 -080073If dirty_background_bytes is written, dirty_background_ratio becomes a function
74of its value (dirty_background_bytes / the amount of dirtyable system memory).
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76==============================================================
77
Peter W Morrealedb0fb182009-01-15 13:50:42 -080078dirty_background_ratio
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Peter W Morrealedb0fb182009-01-15 13:50:42 -080080Contains, as a percentage of total system memory, the number of pages at which
81the pdflush background writeback daemon will start writing out dirty data.
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83==============================================================
84
Peter W Morrealedb0fb182009-01-15 13:50:42 -080085dirty_bytes
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Peter W Morrealedb0fb182009-01-15 13:50:42 -080087Contains the amount of dirty memory at which a process generating disk writes
88will itself start writeback.
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Peter W Morrealedb0fb182009-01-15 13:50:42 -080090If dirty_bytes is written, dirty_ratio becomes a function of its value
91(dirty_bytes / the amount of dirtyable system memory).
92
93==============================================================
94
95dirty_expire_centisecs
96
97This tunable is used to define when dirty data is old enough to be eligible
98for writeout by the pdflush daemons. It is expressed in 100'ths of a second.
99Data which has been dirty in-memory for longer than this interval will be
100written out next time a pdflush daemon wakes up.
101
102==============================================================
103
104dirty_ratio
105
106Contains, as a percentage of total system memory, the number of pages at which
107a process which is generating disk writes will itself start writing out dirty
108data.
109
110==============================================================
111
112dirty_writeback_centisecs
113
114The pdflush writeback daemons will periodically wake up and write `old' data
115out to disk. This tunable expresses the interval between those wakeups, in
116100'ths of a second.
117
118Setting this to zero disables periodic writeback altogether.
119
120==============================================================
121
122drop_caches
123
124Writing to this will cause the kernel to drop clean caches, dentries and
125inodes from memory, causing that memory to become free.
126
127To free pagecache:
128 echo 1 > /proc/sys/vm/drop_caches
129To free dentries and inodes:
130 echo 2 > /proc/sys/vm/drop_caches
131To free pagecache, dentries and inodes:
132 echo 3 > /proc/sys/vm/drop_caches
133
134As this is a non-destructive operation and dirty objects are not freeable, the
135user should run `sync' first.
136
137==============================================================
138
139hugepages_treat_as_movable
140
141This parameter is only useful when kernelcore= is specified at boot time to
142create ZONE_MOVABLE for pages that may be reclaimed or migrated. Huge pages
143are not movable so are not normally allocated from ZONE_MOVABLE. A non-zero
144value written to hugepages_treat_as_movable allows huge pages to be allocated
145from ZONE_MOVABLE.
146
147Once enabled, the ZONE_MOVABLE is treated as an area of memory the huge
148pages pool can easily grow or shrink within. Assuming that applications are
149not running that mlock() a lot of memory, it is likely the huge pages pool
150can grow to the size of ZONE_MOVABLE by repeatedly entering the desired value
151into nr_hugepages and triggering page reclaim.
152
153==============================================================
154
155hugetlb_shm_group
156
157hugetlb_shm_group contains group id that is allowed to create SysV
158shared memory segment using hugetlb page.
159
160==============================================================
161
162laptop_mode
163
164laptop_mode is a knob that controls "laptop mode". All the things that are
165controlled by this knob are discussed in Documentation/laptops/laptop-mode.txt.
166
167==============================================================
168
169legacy_va_layout
170
171If non-zero, this sysctl disables the new 32-bit mmap mmap layout - the kernel
172will use the legacy (2.4) layout for all processes.
173
174==============================================================
175
176lowmem_reserve_ratio
177
178For some specialised workloads on highmem machines it is dangerous for
179the kernel to allow process memory to be allocated from the "lowmem"
180zone. This is because that memory could then be pinned via the mlock()
181system call, or by unavailability of swapspace.
182
183And on large highmem machines this lack of reclaimable lowmem memory
184can be fatal.
185
186So the Linux page allocator has a mechanism which prevents allocations
187which _could_ use highmem from using too much lowmem. This means that
188a certain amount of lowmem is defended from the possibility of being
189captured into pinned user memory.
190
191(The same argument applies to the old 16 megabyte ISA DMA region. This
192mechanism will also defend that region from allocations which could use
193highmem or lowmem).
194
195The `lowmem_reserve_ratio' tunable determines how aggressive the kernel is
196in defending these lower zones.
197
198If you have a machine which uses highmem or ISA DMA and your
199applications are using mlock(), or if you are running with no swap then
200you probably should change the lowmem_reserve_ratio setting.
201
202The lowmem_reserve_ratio is an array. You can see them by reading this file.
203-
204% cat /proc/sys/vm/lowmem_reserve_ratio
205256 256 32
206-
207Note: # of this elements is one fewer than number of zones. Because the highest
208 zone's value is not necessary for following calculation.
209
210But, these values are not used directly. The kernel calculates # of protection
211pages for each zones from them. These are shown as array of protection pages
212in /proc/zoneinfo like followings. (This is an example of x86-64 box).
213Each zone has an array of protection pages like this.
214
215-
216Node 0, zone DMA
217 pages free 1355
218 min 3
219 low 3
220 high 4
221 :
222 :
223 numa_other 0
224 protection: (0, 2004, 2004, 2004)
225 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
226 pagesets
227 cpu: 0 pcp: 0
228 :
229-
230These protections are added to score to judge whether this zone should be used
231for page allocation or should be reclaimed.
232
233In this example, if normal pages (index=2) are required to this DMA zone and
234pages_high is used for watermark, the kernel judges this zone should not be
235used because pages_free(1355) is smaller than watermark + protection[2]
236(4 + 2004 = 2008). If this protection value is 0, this zone would be used for
237normal page requirement. If requirement is DMA zone(index=0), protection[0]
238(=0) is used.
239
240zone[i]'s protection[j] is calculated by following expression.
241
242(i < j):
243 zone[i]->protection[j]
244 = (total sums of present_pages from zone[i+1] to zone[j] on the node)
245 / lowmem_reserve_ratio[i];
246(i = j):
247 (should not be protected. = 0;
248(i > j):
249 (not necessary, but looks 0)
250
251The default values of lowmem_reserve_ratio[i] are
252 256 (if zone[i] means DMA or DMA32 zone)
253 32 (others).
254As above expression, they are reciprocal number of ratio.
255256 means 1/256. # of protection pages becomes about "0.39%" of total present
256pages of higher zones on the node.
257
258If you would like to protect more pages, smaller values are effective.
259The minimum value is 1 (1/1 -> 100%).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261==============================================================
262
263max_map_count:
264
265This file contains the maximum number of memory map areas a process
266may have. Memory map areas are used as a side-effect of calling
267malloc, directly by mmap and mprotect, and also when loading shared
268libraries.
269
270While most applications need less than a thousand maps, certain
271programs, particularly malloc debuggers, may consume lots of them,
272e.g., up to one or two maps per allocation.
273
274The default value is 65536.
275
276==============================================================
277
278min_free_kbytes:
279
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800280This is used to force the Linux VM to keep a minimum number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281of kilobytes free. The VM uses this number to compute a pages_min
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800282value for each lowmem zone in the system. Each lowmem zone gets
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283a number of reserved free pages based proportionally on its size.
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800284
Matt LaPlanted9195882008-07-25 19:45:33 -0700285Some minimal amount of memory is needed to satisfy PF_MEMALLOC
Pavel Machek24950892007-10-16 23:31:28 -0700286allocations; if you set this to lower than 1024KB, your system will
287become subtly broken, and prone to deadlock under high loads.
288
289Setting this too high will OOM your machine instantly.
290
Christoph Lameter96146342006-07-03 00:24:13 -0700291=============================================================
292
Christoph Lameter0ff38492006-09-25 23:31:52 -0700293min_slab_ratio:
294
295This is available only on NUMA kernels.
296
297A percentage of the total pages in each zone. On Zone reclaim
298(fallback from the local zone occurs) slabs will be reclaimed if more
299than this percentage of pages in a zone are reclaimable slab pages.
300This insures that the slab growth stays under control even in NUMA
301systems that rarely perform global reclaim.
302
303The default is 5 percent.
304
305Note that slab reclaim is triggered in a per zone / node fashion.
306The process of reclaiming slab memory is currently not node specific
307and may not be fast.
308
309=============================================================
310
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800311min_unmapped_ratio:
KAMEZAWA Hiroyukifadd8fb2006-06-23 02:03:13 -0700312
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800313This is available only on NUMA kernels.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700314
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800315A percentage of the total pages in each zone. Zone reclaim will only
316occur if more than this percentage of pages are file backed and unmapped.
317This is to insure that a minimal amount of local pages is still available for
318file I/O even if the node is overallocated.
Yasunori Goto2b744c02007-05-06 14:49:59 -0700319
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800320The default is 1 percent.
David Rientjesfe071d72007-10-16 23:25:56 -0700321
Eric Parised032182007-06-28 15:55:21 -0400322==============================================================
323
324mmap_min_addr
325
326This file indicates the amount of address space which a user process will
327be restricted from mmaping. Since kernel null dereference bugs could
328accidentally operate based on the information in the first couple of pages
329of memory userspace processes should not be allowed to write to them. By
330default this value is set to 0 and no protections will be enforced by the
331security module. Setting this value to something like 64k will allow the
332vast majority of applications to work correctly and provide defense in depth
333against future potential kernel bugs.
334
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700335==============================================================
336
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800337nr_hugepages
338
339Change the minimum size of the hugepage pool.
340
341See Documentation/vm/hugetlbpage.txt
342
343==============================================================
344
345nr_overcommit_hugepages
346
347Change the maximum size of the hugepage pool. The maximum is
348nr_hugepages + nr_overcommit_hugepages.
349
350See Documentation/vm/hugetlbpage.txt
351
352==============================================================
353
354nr_pdflush_threads
355
356The current number of pdflush threads. This value is read-only.
357The value changes according to the number of dirty pages in the system.
358
359When neccessary, additional pdflush threads are created, one per second, up to
360nr_pdflush_threads_max.
361
362==============================================================
363
364nr_trim_pages
365
366This is available only on NOMMU kernels.
367
368This value adjusts the excess page trimming behaviour of power-of-2 aligned
369NOMMU mmap allocations.
370
371A value of 0 disables trimming of allocations entirely, while a value of 1
372trims excess pages aggressively. Any value >= 1 acts as the watermark where
373trimming of allocations is initiated.
374
375The default value is 1.
376
377See Documentation/nommu-mmap.txt for more information.
378
379==============================================================
380
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700381numa_zonelist_order
382
383This sysctl is only for NUMA.
384'where the memory is allocated from' is controlled by zonelists.
385(This documentation ignores ZONE_HIGHMEM/ZONE_DMA32 for simple explanation.
386 you may be able to read ZONE_DMA as ZONE_DMA32...)
387
388In non-NUMA case, a zonelist for GFP_KERNEL is ordered as following.
389ZONE_NORMAL -> ZONE_DMA
390This means that a memory allocation request for GFP_KERNEL will
391get memory from ZONE_DMA only when ZONE_NORMAL is not available.
392
393In NUMA case, you can think of following 2 types of order.
394Assume 2 node NUMA and below is zonelist of Node(0)'s GFP_KERNEL
395
396(A) Node(0) ZONE_NORMAL -> Node(0) ZONE_DMA -> Node(1) ZONE_NORMAL
397(B) Node(0) ZONE_NORMAL -> Node(1) ZONE_NORMAL -> Node(0) ZONE_DMA.
398
399Type(A) offers the best locality for processes on Node(0), but ZONE_DMA
400will be used before ZONE_NORMAL exhaustion. This increases possibility of
401out-of-memory(OOM) of ZONE_DMA because ZONE_DMA is tend to be small.
402
403Type(B) cannot offer the best locality but is more robust against OOM of
404the DMA zone.
405
406Type(A) is called as "Node" order. Type (B) is "Zone" order.
407
408"Node order" orders the zonelists by node, then by zone within each node.
409Specify "[Nn]ode" for zone order
410
411"Zone Order" orders the zonelists by zone type, then by node within each
412zone. Specify "[Zz]one"for zode order.
413
414Specify "[Dd]efault" to request automatic configuration. Autoconfiguration
415will select "node" order in following case.
416(1) if the DMA zone does not exist or
417(2) if the DMA zone comprises greater than 50% of the available memory or
418(3) if any node's DMA zone comprises greater than 60% of its local memory and
419 the amount of local memory is big enough.
420
421Otherwise, "zone" order will be selected. Default order is recommended unless
422this is causing problems for your system/application.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800423
424==============================================================
425
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800426oom_dump_tasks
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800427
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800428Enables a system-wide task dump (excluding kernel threads) to be
429produced when the kernel performs an OOM-killing and includes such
430information as pid, uid, tgid, vm size, rss, cpu, oom_adj score, and
431name. This is helpful to determine why the OOM killer was invoked
432and to identify the rogue task that caused it.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800433
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800434If this is set to zero, this information is suppressed. On very
435large systems with thousands of tasks it may not be feasible to dump
436the memory state information for each one. Such systems should not
437be forced to incur a performance penalty in OOM conditions when the
438information may not be desired.
439
440If this is set to non-zero, this information is shown whenever the
441OOM killer actually kills a memory-hogging task.
442
443The default value is 0.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800444
445==============================================================
446
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800447oom_kill_allocating_task
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800448
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800449This enables or disables killing the OOM-triggering task in
450out-of-memory situations.
Nishanth Aravamudand5dbac82007-12-17 16:20:25 -0800451
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800452If this is set to zero, the OOM killer will scan through the entire
453tasklist and select a task based on heuristics to kill. This normally
454selects a rogue memory-hogging task that frees up a large amount of
455memory when killed.
456
457If this is set to non-zero, the OOM killer simply kills the task that
458triggered the out-of-memory condition. This avoids the expensive
459tasklist scan.
460
461If panic_on_oom is selected, it takes precedence over whatever value
462is used in oom_kill_allocating_task.
463
464The default value is 0.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000465
466==============================================================
467
Peter W Morrealefafd6882009-04-06 19:00:29 -0700468nr_pdflush_threads_min
469
470This value controls the minimum number of pdflush threads.
471
472At boot time, the kernel will create and maintain 'nr_pdflush_threads_min'
473threads for the kernel's lifetime.
474
475The default value is 2. The minimum value you can specify is 1, and
476the maximum value is the current setting of 'nr_pdflush_threads_max'.
477
478See 'nr_pdflush_threads_max' below for more information.
479
480==============================================================
481
482nr_pdflush_threads_max
483
484This value controls the maximum number of pdflush threads that can be
485created. The pdflush algorithm will create a new pdflush thread (up to
486this maximum) if no pdflush threads have been available for >= 1 second.
487
488The default value is 8. The minimum value you can specify is the
489current value of 'nr_pdflush_threads_min' and the
490maximum is 1000.
491
492==============================================================
493
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800494overcommit_memory:
Paul Mundtdd8632a2009-01-08 12:04:47 +0000495
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800496This value contains a flag that enables memory overcommitment.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000497
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800498When this flag is 0, the kernel attempts to estimate the amount
499of free memory left when userspace requests more memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000500
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800501When this flag is 1, the kernel pretends there is always enough
502memory until it actually runs out.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000503
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800504When this flag is 2, the kernel uses a "never overcommit"
505policy that attempts to prevent any overcommit of memory.
Paul Mundtdd8632a2009-01-08 12:04:47 +0000506
Peter W Morrealedb0fb182009-01-15 13:50:42 -0800507This feature can be very useful because there are a lot of
508programs that malloc() huge amounts of memory "just-in-case"
509and don't use much of it.
510
511The default value is 0.
512
513See Documentation/vm/overcommit-accounting and
514security/commoncap.c::cap_vm_enough_memory() for more information.
515
516==============================================================
517
518overcommit_ratio:
519
520When overcommit_memory is set to 2, the committed address
521space is not permitted to exceed swap plus this percentage
522of physical RAM. See above.
523
524==============================================================
525
526page-cluster
527
528page-cluster controls the number of pages which are written to swap in
529a single attempt. The swap I/O size.
530
531It is a logarithmic value - setting it to zero means "1 page", setting
532it to 1 means "2 pages", setting it to 2 means "4 pages", etc.
533
534The default value is three (eight pages at a time). There may be some
535small benefits in tuning this to a different value if your workload is
536swap-intensive.
537
538=============================================================
539
540panic_on_oom
541
542This enables or disables panic on out-of-memory feature.
543
544If this is set to 0, the kernel will kill some rogue process,
545called oom_killer. Usually, oom_killer can kill rogue processes and
546system will survive.
547
548If this is set to 1, the kernel panics when out-of-memory happens.
549However, if a process limits using nodes by mempolicy/cpusets,
550and those nodes become memory exhaustion status, one process
551may be killed by oom-killer. No panic occurs in this case.
552Because other nodes' memory may be free. This means system total status
553may be not fatal yet.
554
555If this is set to 2, the kernel panics compulsorily even on the
556above-mentioned.
557
558The default value is 0.
5591 and 2 are for failover of clustering. Please select either
560according to your policy of failover.
561
562=============================================================
563
564percpu_pagelist_fraction
565
566This is the fraction of pages at most (high mark pcp->high) in each zone that
567are allocated for each per cpu page list. The min value for this is 8. It
568means that we don't allow more than 1/8th of pages in each zone to be
569allocated in any single per_cpu_pagelist. This entry only changes the value
570of hot per cpu pagelists. User can specify a number like 100 to allocate
5711/100th of each zone to each per cpu page list.
572
573The batch value of each per cpu pagelist is also updated as a result. It is
574set to pcp->high/4. The upper limit of batch is (PAGE_SHIFT * 8)
575
576The initial value is zero. Kernel does not use this value at boot time to set
577the high water marks for each per cpu page list.
578
579==============================================================
580
581stat_interval
582
583The time interval between which vm statistics are updated. The default
584is 1 second.
585
586==============================================================
587
588swappiness
589
590This control is used to define how aggressive the kernel will swap
591memory pages. Higher values will increase agressiveness, lower values
592descrease the amount of swap.
593
594The default value is 60.
595
596==============================================================
597
598vfs_cache_pressure
599------------------
600
601Controls the tendency of the kernel to reclaim the memory which is used for
602caching of directory and inode objects.
603
604At the default value of vfs_cache_pressure=100 the kernel will attempt to
605reclaim dentries and inodes at a "fair" rate with respect to pagecache and
606swapcache reclaim. Decreasing vfs_cache_pressure causes the kernel to prefer
607to retain dentry and inode caches. Increasing vfs_cache_pressure beyond 100
608causes the kernel to prefer to reclaim dentries and inodes.
609
610==============================================================
611
612zone_reclaim_mode:
613
614Zone_reclaim_mode allows someone to set more or less aggressive approaches to
615reclaim memory when a zone runs out of memory. If it is set to zero then no
616zone reclaim occurs. Allocations will be satisfied from other zones / nodes
617in the system.
618
619This is value ORed together of
620
6211 = Zone reclaim on
6222 = Zone reclaim writes dirty pages out
6234 = Zone reclaim swaps pages
624
625zone_reclaim_mode is set during bootup to 1 if it is determined that pages
626from remote zones will cause a measurable performance reduction. The
627page allocator will then reclaim easily reusable pages (those page
628cache pages that are currently not used) before allocating off node pages.
629
630It may be beneficial to switch off zone reclaim if the system is
631used for a file server and all of memory should be used for caching files
632from disk. In that case the caching effect is more important than
633data locality.
634
635Allowing zone reclaim to write out pages stops processes that are
636writing large amounts of data from dirtying pages on other nodes. Zone
637reclaim will write out dirty pages if a zone fills up and so effectively
638throttle the process. This may decrease the performance of a single process
639since it cannot use all of system memory to buffer the outgoing writes
640anymore but it preserve the memory on other nodes so that the performance
641of other processes running on other nodes will not be affected.
642
643Allowing regular swap effectively restricts allocations to the local
644node unless explicitly overridden by memory policies or cpuset
645configurations.
646
647============ End of Document =================================