diff options
author | Lee Schermerhorn <Lee.Schermerhorn@hp.com> | 2008-10-18 23:26:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-20 11:50:26 -0400 |
commit | 7b854121eb3e5ba0241882ff939e2c485228c9c5 (patch) | |
tree | e553bc3b3c2be3b36cfcce5219b2ef85646ea495 /fs/proc/proc_misc.c | |
parent | bbfd28eee9fbd73e780b19beb3dc562befbb94fa (diff) |
Unevictable LRU Page Statistics
Report unevictable pages per zone and system wide.
Kosaki Motohiro added support for memory controller unevictable
statistics.
[riel@redhat.com: fix printk in show_free_areas()]
[akpm@linux-foundation.org: fix units in /proc/vmstats]
Signed-off-by: Lee Schermerhorn <lee.schermerhorn@hp.com>
Signed-off-by: Rik van Riel <riel@redhat.com>
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Debugged-by: Hiroshi Shimamoto <h-shimamoto@ct.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc/proc_misc.c')
-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), |