[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>
This commit is contained in:
Christoph Lameter 2007-02-10 01:43:05 -08:00 committed by Linus Torvalds
parent 05a0416be2
commit 65e458d43d
3 changed files with 4 additions and 22 deletions

View file

@ -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);