[RFC] fs/proc/meminfo: introduce Unaccounted statistic

From: Vlastimil Babka
Date: Thu Oct 20 2016 - 08:12:09 EST


The /proc/meminfo virtual file is a collection of various system-wide memory
usage statistics. One of the use cases for looking at the output is to see
whether the kernel might be leaking memory by direct allocations that are not
counted among any of the statistics. This is hovewer not immediately obvious,
because some fields are meant to add up to the MemTotal value, and others not.
Subtle changes also happen over time, e.g. the AnonPages field started
including THP's since commit 3cd14fcd3f12 ("thp: account anon transparent
huge pages into NR_ANON_PAGES") and the Cached field used to include hugetlb
until commit 4165b9b46181 ("hugetlb: do not account hugetlb pages as
NR_FILE_PAGES").

To make kernel memory leaks more obvious, this patch adds an Unaccounted field
whose value is calculated by subtracting a sum of fields that are supposed to
add up to MemTotal without overlap, from the MeTotal value. This should also
help anyone looking at the code to determine these fields easily.

Not-yet-signed-off-by: Vlastimil Babka <vbabka@xxxxxxx>
Cc: Michal Hocko <mhocko@xxxxxxxx>
Cc: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx>
Cc: Johannes Weiner <hannes@xxxxxxxxxxx>
Cc: "Kirill A. Shutemov" <kirill.shutemov@xxxxxxxxxxxxxxx>
Cc: Hugh Dickins <hughd@xxxxxxxxxx>
Cc: David Rientjes <rientjes@xxxxxxxxxx>
---
Hi, I'm wondering if people would find this useful. If you think it is, and
to not make performance worse, I could also make sure in proper submission
that values are not read via global_page_state() multiple times etc...

fs/proc/meminfo.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)

diff --git a/fs/proc/meminfo.c b/fs/proc/meminfo.c
index 8a428498d6b2..3fcd71d4d805 100644
--- a/fs/proc/meminfo.c
+++ b/fs/proc/meminfo.c
@@ -48,6 +48,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
unsigned long committed;
long cached;
long available;
+ long unaccounted;
unsigned long pages[NR_LRU_LISTS];
int lru;

@@ -65,6 +66,18 @@ static int meminfo_proc_show(struct seq_file *m, void *v)

available = si_mem_available();

+ unaccounted = i.totalram - i.freeram
+ - global_node_page_state(NR_ANON_MAPPED)
+ - global_node_page_state(NR_FILE_PAGES)
+ - global_page_state(NR_PAGETABLE)
+ - global_page_state(NR_SLAB_RECLAIMABLE)
+ - global_page_state(NR_SLAB_UNRECLAIMABLE)
+ - (global_page_state(NR_KERNEL_STACK_KB)
+ >> (PAGE_SHIFT - 10))
+ - global_page_state(NR_BOUNCE)
+ - global_node_page_state(NR_WRITEBACK_TEMP)
+ - hugetlb_total_pages();
+
show_val_kb(m, "MemTotal: ", i.totalram);
show_val_kb(m, "MemFree: ", i.freeram);
show_val_kb(m, "MemAvailable: ", available);
@@ -119,6 +132,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
global_page_state(NR_PAGETABLE));
#ifdef CONFIG_QUICKLIST
show_val_kb(m, "Quicklists: ", quicklist_total_size());
+ unaccounted -= quicklist_total_size();
#endif

show_val_kb(m, "NFS_Unstable: ",
@@ -156,6 +170,10 @@ static int meminfo_proc_show(struct seq_file *m, void *v)

hugetlb_report_meminfo(m);

+ if (unaccounted < 0)
+ unaccounted = 0;
+ show_val_kb(m, "Unaccounted: ", unaccounted);
+
arch_report_meminfo(m);

return 0;
--
2.10.1