aboutsummaryrefslogtreecommitdiffstats
path: root/mm/vmstat.c
diff options
context:
space:
mode:
authorChristoph Lameter <clameter@sgi.com>2007-02-10 01:43:05 -0800
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-02-11 10:51:18 -0800
commit05a0416be2b88d859efcbc4a4290555a04d169a1 (patch)
treeda7216a3a04625a45b952ea21f817d5cdb199530 /mm/vmstat.c
parent[PATCH] Drop nr_free_pages_pgdat() (diff)
downloadlinux-dev-05a0416be2b88d859efcbc4a4290555a04d169a1.tar.xz
linux-dev-05a0416be2b88d859efcbc4a4290555a04d169a1.zip
[PATCH] Drop __get_zone_counts()
Values are readily available via ZVC per node and global 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 '')
-rw-r--r--mm/vmstat.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/mm/vmstat.c b/mm/vmstat.c
index 2ee7ec5e003f..21ba6f88b35c 100644
--- a/mm/vmstat.c
+++ b/mm/vmstat.c
@@ -13,14 +13,6 @@
#include <linux/module.h>
#include <linux/cpu.h>
-void __get_zone_counts(unsigned long *active, unsigned long *inactive,
- unsigned long *free, struct pglist_data *pgdat)
-{
- *active = node_page_state(pgdat->node_id, NR_ACTIVE);
- *inactive = node_page_state(pgdat->node_id, NR_INACTIVE);
- *free = node_page_state(pgdat->node_id, NR_FREE_PAGES);
-}
-
void get_zone_counts(unsigned long *active,
unsigned long *inactive, unsigned long *free)
{