diff options
author | Christoph Lameter <clameter@sgi.com> | 2007-02-10 01:43:05 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 10:51:18 -0800 |
commit | 65e458d43dff872ee560e721fb0fdb367bb5adb0 (patch) | |
tree | e903ec97a4a6c0ee952108b696387ef098a6a80c /mm/page_alloc.c | |
parent | 05a0416be2b88d859efcbc4a4290555a04d169a1 (diff) | |
download | linux-3.10-65e458d43dff872ee560e721fb0fdb367bb5adb0.tar.gz linux-3.10-65e458d43dff872ee560e721fb0fdb367bb5adb0.tar.bz2 linux-3.10-65e458d43dff872ee560e721fb0fdb367bb5adb0.zip |
[PATCH] Drop get_zone_counts()
Values are available via ZVC sums.
Signed-off-by: Christoph Lameter <clameter@sgi.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 | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index cf1a34074f0..940444c9970 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -1524,9 +1524,6 @@ void si_meminfo_node(struct sysinfo *val, int nid) void show_free_areas(void) { int cpu; - unsigned long active; - unsigned long inactive; - unsigned long free; struct zone *zone; for_each_zone(zone) { @@ -1550,12 +1547,10 @@ void show_free_areas(void) } } - get_zone_counts(&active, &inactive, &free); - printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu unstable:%lu\n" " free:%lu slab:%lu mapped:%lu pagetables:%lu bounce:%lu\n", - active, - inactive, + global_page_state(NR_ACTIVE), + global_page_state(NR_INACTIVE), global_page_state(NR_FILE_DIRTY), global_page_state(NR_WRITEBACK), global_page_state(NR_UNSTABLE_NFS), |