diff options
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/proc_misc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c index b8edb2860557..6dd60eaea997 100644 --- a/fs/proc/proc_misc.c +++ b/fs/proc/proc_misc.c | |||
@@ -174,6 +174,9 @@ static int meminfo_read_proc(char *page, char **start, off_t off, | |||
174 | "Inactive(anon): %8lu kB\n" | 174 | "Inactive(anon): %8lu kB\n" |
175 | "Active(file): %8lu kB\n" | 175 | "Active(file): %8lu kB\n" |
176 | "Inactive(file): %8lu kB\n" | 176 | "Inactive(file): %8lu kB\n" |
177 | #ifdef CONFIG_UNEVICTABLE_LRU | ||
178 | "Unevictable: %8lu kB\n" | ||
179 | #endif | ||
177 | #ifdef CONFIG_HIGHMEM | 180 | #ifdef CONFIG_HIGHMEM |
178 | "HighTotal: %8lu kB\n" | 181 | "HighTotal: %8lu kB\n" |
179 | "HighFree: %8lu kB\n" | 182 | "HighFree: %8lu kB\n" |
@@ -212,6 +215,9 @@ static int meminfo_read_proc(char *page, char **start, off_t off, | |||
212 | K(pages[LRU_INACTIVE_ANON]), | 215 | K(pages[LRU_INACTIVE_ANON]), |
213 | K(pages[LRU_ACTIVE_FILE]), | 216 | K(pages[LRU_ACTIVE_FILE]), |
214 | K(pages[LRU_INACTIVE_FILE]), | 217 | K(pages[LRU_INACTIVE_FILE]), |
218 | #ifdef CONFIG_UNEVICTABLE_LRU | ||
219 | K(pages[LRU_UNEVICTABLE]), | ||
220 | #endif | ||
215 | #ifdef CONFIG_HIGHMEM | 221 | #ifdef CONFIG_HIGHMEM |
216 | K(i.totalhigh), | 222 | K(i.totalhigh), |
217 | K(i.freehigh), | 223 | K(i.freehigh), |