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/vmstat.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/vmstat.c')
-rw-r--r-- | mm/vmstat.c | 8 |
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 @@ | |||
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | #include <linux/cpu.h> | 14 | #include <linux/cpu.h> |
15 | 15 | ||
16 | void get_zone_counts(unsigned long *active, | ||
17 | unsigned long *inactive, unsigned long *free) | ||
18 | { | ||
19 | *active = global_page_state(NR_ACTIVE); | ||
20 | *inactive = global_page_state(NR_INACTIVE); | ||
21 | *free = global_page_state(NR_FREE_PAGES); | ||
22 | } | ||
23 | |||
24 | #ifdef CONFIG_VM_EVENT_COUNTERS | 16 | #ifdef CONFIG_VM_EVENT_COUNTERS |
25 | DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}}; | 17 | DEFINE_PER_CPU(struct vm_event_state, vm_event_states) = {{0}}; |
26 | EXPORT_PER_CPU_SYMBOL(vm_event_states); | 18 | EXPORT_PER_CPU_SYMBOL(vm_event_states); |