OSDN Git Service

add extra free kbytes tunable
authorRik van Riel <riel@redhat.com>
Thu, 1 Sep 2011 19:26:50 +0000 (15:26 -0400)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Mon, 13 Apr 2015 16:43:01 +0000 (00:43 +0800)
commit03e34a0487a9461d3c0e921ee16c2ad2ceaf0300
treebdc5c15233427aaa4127b069dc39c4f389aba084
parent483d840271e78ff5d4e30f2342137bd0b3a0c73f
add extra free kbytes tunable

Add a userspace visible knob to tell the VM to keep an extra amount
of memory free, by increasing the gap between each zone's min and
low watermarks.

This is useful for realtime applications that call system
calls and have a bound on the number of allocations that happen
in any short time period.  In this application, extra_free_kbytes
would be left at an amount equal to or larger than than the
maximum number of allocations that happen in any burst.

It may also be useful to reduce the memory use of virtual
machines (temporarily?), in a way that does not cause memory
fragmentation like ballooning does.

[ccross]
Revived for use on old kernels where no other solution exists.
The tunable will be removed on kernels that do better at avoiding
direct reclaim.

Change-Id: I765a42be8e964bfd3e2886d1ca85a29d60c3bb3e
Signed-off-by: Rik van Riel<riel@redhat.com>
Signed-off-by: Colin Cross <ccross@android.com>
Documentation/sysctl/vm.txt
kernel/sysctl.c
mm/page_alloc.c