diff options
author | Christoph Lameter <clameter@sgi.com> | 2007-02-10 04:43:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 13:51:18 -0500 |
commit | 65e458d43dff872ee560e721fb0fdb367bb5adb0 (patch) | |
tree | e903ec97a4a6c0ee952108b696387ef098a6a80c /mm/page_alloc.c | |
parent | 05a0416be2b88d859efcbc4a4290555a04d169a1 (diff) |
[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 cf1a34074f08..940444c99703 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -1524,9 +1524,6 @@ void si_meminfo_node(struct sysinfo *val, int nid) | |||
1524 | void show_free_areas(void) | 1524 | void show_free_areas(void) |
1525 | { | 1525 | { |
1526 | int cpu; | 1526 | int cpu; |
1527 | unsigned long active; | ||
1528 | unsigned long inactive; | ||
1529 | unsigned long free; | ||
1530 | struct zone *zone; | 1527 | struct zone *zone; |
1531 | 1528 | ||
1532 | for_each_zone(zone) { | 1529 | for_each_zone(zone) { |
@@ -1550,12 +1547,10 @@ void show_free_areas(void) | |||
1550 | } | 1547 | } |
1551 | } | 1548 | } |
1552 | 1549 | ||
1553 | get_zone_counts(&active, &inactive, &free); | ||
1554 | |||
1555 | printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu unstable:%lu\n" | 1550 | printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu unstable:%lu\n" |
1556 | " free:%lu slab:%lu mapped:%lu pagetables:%lu bounce:%lu\n", | 1551 | " free:%lu slab:%lu mapped:%lu pagetables:%lu bounce:%lu\n", |
1557 | active, | 1552 | global_page_state(NR_ACTIVE), |
1558 | inactive, | 1553 | global_page_state(NR_INACTIVE), |
1559 | global_page_state(NR_FILE_DIRTY), | 1554 | global_page_state(NR_FILE_DIRTY), |
1560 | global_page_state(NR_WRITEBACK), | 1555 | global_page_state(NR_WRITEBACK), |
1561 | global_page_state(NR_UNSTABLE_NFS), | 1556 | global_page_state(NR_UNSTABLE_NFS), |