proc: meminfo: estimate available memory more conservatively
authorJohannes Weiner <hannes@cmpxchg.org>
Thu, 14 Jan 2016 23:20:18 +0000 (15:20 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 15 Jan 2016 00:00:49 +0000 (16:00 -0800)
The MemAvailable item in /proc/meminfo is to give users a hint of how
much memory is allocatable without causing swapping, so it excludes the
zones' low watermarks as unavailable to userspace.

However, for a userspace allocation, kswapd will actually reclaim until
the free pages hit a combination of the high watermark and the page
allocator's lowmem protection that keeps a certain amount of DMA and
DMA32 memory from userspace as well.

Subtract the full amount we know to be unavailable to userspace from the
number of free pages when calculating MemAvailable.

Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
Cc: Rik van Riel <riel@redhat.com>
Cc: Mel Gorman <mgorman@suse.de>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/proc/meminfo.c

index 9155a5a0d3b9de6114e32d4108e67d7c038f0e20..df4661abadc40fa406f9b36c3dfd344179e90eb8 100644 (file)
@@ -57,11 +57,8 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
        /*
         * Estimate the amount of memory available for userspace allocations,
         * without causing swapping.
-        *
-        * Free memory cannot be taken below the low watermark, before the
-        * system starts swapping.
         */
-       available = i.freeram - wmark_low;
+       available = i.freeram - totalreserve_pages;
 
        /*
         * Not all the page cache can be freed, otherwise the system will
This page took 0.024903 seconds and 5 git commands to generate.