aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc
diff options
context:
space:
mode:
Diffstat (limited to 'fs/proc')
-rw-r--r--fs/proc/proc_misc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
index 1af12fd77fe6..ff809656ce31 100644
--- a/fs/proc/proc_misc.c
+++ b/fs/proc/proc_misc.c
@@ -168,6 +168,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
168 "SwapFree: %8lu kB\n" 168 "SwapFree: %8lu kB\n"
169 "Dirty: %8lu kB\n" 169 "Dirty: %8lu kB\n"
170 "Writeback: %8lu kB\n" 170 "Writeback: %8lu kB\n"
171 "AnonPages: %8lu kB\n"
171 "Mapped: %8lu kB\n" 172 "Mapped: %8lu kB\n"
172 "Slab: %8lu kB\n" 173 "Slab: %8lu kB\n"
173 "CommitLimit: %8lu kB\n" 174 "CommitLimit: %8lu kB\n"
@@ -191,6 +192,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
191 K(i.freeswap), 192 K(i.freeswap),
192 K(ps.nr_dirty), 193 K(ps.nr_dirty),
193 K(ps.nr_writeback), 194 K(ps.nr_writeback),
195 K(global_page_state(NR_ANON_PAGES)),
194 K(global_page_state(NR_FILE_MAPPED)), 196 K(global_page_state(NR_FILE_MAPPED)),
195 K(ps.nr_slab), 197 K(ps.nr_slab),
196 K(allowed), 198 K(allowed),