diff options
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index b6d0d09557ef..afda8fd16484 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -2134,16 +2134,18 @@ void show_free_areas(void) | |||
2134 | } | 2134 | } |
2135 | } | 2135 | } |
2136 | 2136 | ||
2137 | printk("Active_anon:%lu active_file:%lu inactive_anon:%lu\n" | 2137 | printk("active_anon:%lu inactive_anon:%lu isolated_anon:%lu\n" |
2138 | " inactive_file:%lu" | 2138 | " active_file:%lu inactive_file:%lu isolated_file:%lu\n" |
2139 | " unevictable:%lu" | 2139 | " unevictable:%lu" |
2140 | " dirty:%lu writeback:%lu unstable:%lu buffer:%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 shmem:%lu pagetables:%lu bounce:%lu\n", | 2142 | " mapped:%lu shmem:%lu pagetables:%lu bounce:%lu\n", |
2143 | global_page_state(NR_ACTIVE_ANON), | 2143 | global_page_state(NR_ACTIVE_ANON), |
2144 | global_page_state(NR_ACTIVE_FILE), | ||
2145 | global_page_state(NR_INACTIVE_ANON), | 2144 | global_page_state(NR_INACTIVE_ANON), |
2145 | global_page_state(NR_ISOLATED_ANON), | ||
2146 | global_page_state(NR_ACTIVE_FILE), | ||
2146 | global_page_state(NR_INACTIVE_FILE), | 2147 | global_page_state(NR_INACTIVE_FILE), |
2148 | global_page_state(NR_ISOLATED_FILE), | ||
2147 | global_page_state(NR_UNEVICTABLE), | 2149 | global_page_state(NR_UNEVICTABLE), |
2148 | global_page_state(NR_FILE_DIRTY), | 2150 | global_page_state(NR_FILE_DIRTY), |
2149 | global_page_state(NR_WRITEBACK), | 2151 | global_page_state(NR_WRITEBACK), |
@@ -2171,6 +2173,8 @@ void show_free_areas(void) | |||
2171 | " active_file:%lukB" | 2173 | " active_file:%lukB" |
2172 | " inactive_file:%lukB" | 2174 | " inactive_file:%lukB" |
2173 | " unevictable:%lukB" | 2175 | " unevictable:%lukB" |
2176 | " isolated(anon):%lukB" | ||
2177 | " isolated(file):%lukB" | ||
2174 | " present:%lukB" | 2178 | " present:%lukB" |
2175 | " mlocked:%lukB" | 2179 | " mlocked:%lukB" |
2176 | " dirty:%lukB" | 2180 | " dirty:%lukB" |
@@ -2197,6 +2201,8 @@ void show_free_areas(void) | |||
2197 | K(zone_page_state(zone, NR_ACTIVE_FILE)), | 2201 | K(zone_page_state(zone, NR_ACTIVE_FILE)), |
2198 | K(zone_page_state(zone, NR_INACTIVE_FILE)), | 2202 | K(zone_page_state(zone, NR_INACTIVE_FILE)), |
2199 | K(zone_page_state(zone, NR_UNEVICTABLE)), | 2203 | K(zone_page_state(zone, NR_UNEVICTABLE)), |
2204 | K(zone_page_state(zone, NR_ISOLATED_ANON)), | ||
2205 | K(zone_page_state(zone, NR_ISOLATED_FILE)), | ||
2200 | K(zone->present_pages), | 2206 | K(zone->present_pages), |
2201 | K(zone_page_state(zone, NR_MLOCK)), | 2207 | K(zone_page_state(zone, NR_MLOCK)), |
2202 | K(zone_page_state(zone, NR_FILE_DIRTY)), | 2208 | K(zone_page_state(zone, NR_FILE_DIRTY)), |