aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-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 6dd60eaea997..61b25f4eabe6 100644
--- a/fs/proc/proc_misc.c
+++ b/fs/proc/proc_misc.c
@@ -176,6 +176,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
176 "Inactive(file): %8lu kB\n" 176 "Inactive(file): %8lu kB\n"
177#ifdef CONFIG_UNEVICTABLE_LRU 177#ifdef CONFIG_UNEVICTABLE_LRU
178 "Unevictable: %8lu kB\n" 178 "Unevictable: %8lu kB\n"
179 "Mlocked: %8lu kB\n"
179#endif 180#endif
180#ifdef CONFIG_HIGHMEM 181#ifdef CONFIG_HIGHMEM
181 "HighTotal: %8lu kB\n" 182 "HighTotal: %8lu kB\n"
@@ -217,6 +218,7 @@ static int meminfo_read_proc(char *page, char **start, off_t off,
217 K(pages[LRU_INACTIVE_FILE]), 218 K(pages[LRU_INACTIVE_FILE]),
218#ifdef CONFIG_UNEVICTABLE_LRU 219#ifdef CONFIG_UNEVICTABLE_LRU
219 K(pages[LRU_UNEVICTABLE]), 220 K(pages[LRU_UNEVICTABLE]),
221 K(global_page_state(NR_MLOCK)),
220#endif 222#endif
221#ifdef CONFIG_HIGHMEM 223#ifdef CONFIG_HIGHMEM
222 K(i.totalhigh), 224 K(i.totalhigh),