diff options
author | KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> | 2009-09-21 20:01:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 10:17:27 -0400 |
commit | 71de1ccbe1fb40203edd3beb473f8580d917d2ca (patch) | |
tree | 63417ce9538883348350a879bf359e6100c244de /mm/page_alloc.c | |
parent | 4a0aa73f1d613bf19bc8610bf090c941ef49d720 (diff) |
mm: oom analysis: add buffer cache information to show_free_areas()
It is often useful to know the statistics for all pages that are handled
like page cache pages when looking at OOM log output.
Therefore show_free_areas() should also display buffer cache statistics.
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Acked-by: Wu Fengguang <fengguang.wu@intel.com>
Reviewed-by: Rik van Riel <riel@redhat.com>
Cc: David Rientjes <rientjes@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 8fbf5a4f5cf7..494c09196c30 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -2137,7 +2137,7 @@ void show_free_areas(void) | |||
2137 | printk("Active_anon:%lu active_file:%lu inactive_anon:%lu\n" | 2137 | printk("Active_anon:%lu active_file:%lu inactive_anon:%lu\n" |
2138 | " inactive_file:%lu" | 2138 | " inactive_file:%lu" |
2139 | " unevictable:%lu" | 2139 | " unevictable:%lu" |
2140 | " dirty:%lu writeback:%lu unstable:%lu\n" | 2140 | " dirty:%lu writeback:%lu unstable:%lu buffer:%lu\n" |
2141 | " free:%lu slab_reclaimable:%lu slab_unreclaimable:%lu\n" | 2141 | " free:%lu slab_reclaimable:%lu slab_unreclaimable:%lu\n" |
2142 | " mapped:%lu pagetables:%lu bounce:%lu\n", | 2142 | " mapped:%lu pagetables:%lu bounce:%lu\n", |
2143 | global_page_state(NR_ACTIVE_ANON), | 2143 | global_page_state(NR_ACTIVE_ANON), |
@@ -2148,6 +2148,7 @@ void show_free_areas(void) | |||
2148 | global_page_state(NR_FILE_DIRTY), | 2148 | global_page_state(NR_FILE_DIRTY), |
2149 | global_page_state(NR_WRITEBACK), | 2149 | global_page_state(NR_WRITEBACK), |
2150 | global_page_state(NR_UNSTABLE_NFS), | 2150 | global_page_state(NR_UNSTABLE_NFS), |
2151 | nr_blockdev_pages(), | ||
2151 | global_page_state(NR_FREE_PAGES), | 2152 | global_page_state(NR_FREE_PAGES), |
2152 | global_page_state(NR_SLAB_RECLAIMABLE), | 2153 | global_page_state(NR_SLAB_RECLAIMABLE), |
2153 | global_page_state(NR_SLAB_UNRECLAIMABLE), | 2154 | global_page_state(NR_SLAB_UNRECLAIMABLE), |