* [PATCH] proc: add used mem and swap to meminfo
@ 2011-04-01 7:31 Konstantin Khlebnikov
0 siblings, 0 replies; only message in thread
From: Konstantin Khlebnikov @ 2011-04-01 7:31 UTC (permalink / raw)
To: linux-kernel; +Cc: Andrew Morton, Alexey Dobriyan, Pavel Emelyanov
It makes meminfo more human-friendly.
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
---
fs/proc/meminfo.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/fs/proc/meminfo.c b/fs/proc/meminfo.c
index ed257d1..8f39076 100644
--- a/fs/proc/meminfo.c
+++ b/fs/proc/meminfo.c
@@ -55,6 +55,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
seq_printf(m,
"MemTotal: %8lu kB\n"
"MemFree: %8lu kB\n"
+ "MemUsed: %8lu kB\n"
"Buffers: %8lu kB\n"
"Cached: %8lu kB\n"
"SwapCached: %8lu kB\n"
@@ -77,6 +78,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
#endif
"SwapTotal: %8lu kB\n"
"SwapFree: %8lu kB\n"
+ "SwapUsed: %8lu kB\n"
"Dirty: %8lu kB\n"
"Writeback: %8lu kB\n"
"AnonPages: %8lu kB\n"
@@ -107,6 +109,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
,
K(i.totalram),
K(i.freeram),
+ K(i.totalram-i.freeram),
K(i.bufferram),
K(cached),
K(total_swapcache_pages),
@@ -129,6 +132,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
#endif
K(i.totalswap),
K(i.freeswap),
+ K(i.totalswap-i.freeswap),
K(global_page_state(NR_FILE_DIRTY)),
K(global_page_state(NR_WRITEBACK)),
K(global_page_state(NR_ANON_PAGES)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-04-01 7:32 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-01 7:31 [PATCH] proc: add used mem and swap to meminfo Konstantin Khlebnikov
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.