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
commit65e458d43dff872ee560e721fb0fdb367bb5adb0 (patch)
treee903ec97a4a6c0ee952108b696387ef098a6a80c /mm/vmstat.c
parent[PATCH] Drop __get_zone_counts() (diff)
downloadlinux-dev-65e458d43dff872ee560e721fb0fdb367bb5adb0.tar.xz
linux-dev-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 '')
-rw-r--r--mm/vmstat.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/mm/vmstat.c b/mm/vmstat.c
index 21ba6f88b35c..5ffa8c27ead8 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)
-{
- *active = global_page_state(NR_ACTIVE);
- *inactive = global_page_state(NR_INACTIVE);
- *free = global_page_state(NR_FREE_PAGES);
-}
-
#ifdef CONFIG_VM_EVENT_COUNTERS
DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}};
EXPORT_PER_CPU_SYMBOL(vm_event_states);