aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base
diff options
context:
space:
mode:
authorChristoph Lameter <clameter@sgi.com>2007-02-10 04:43:05 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-02-11 13:51:18 -0500
commit05a0416be2b88d859efcbc4a4290555a04d169a1 (patch)
treeda7216a3a04625a45b952ea21f817d5cdb199530 /drivers/base
parent9195481d2f869a2707a272057f3f8664fd277534 (diff)
[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 'drivers/base')
-rw-r--r--drivers/base/node.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/base/node.c b/drivers/base/node.c
index 001e6f6b9c1b..475e33f76e0d 100644
--- a/drivers/base/node.c
+++ b/drivers/base/node.c
@@ -40,13 +40,8 @@ static ssize_t node_read_meminfo(struct sys_device * dev, char * buf)
40 int n; 40 int n;
41 int nid = dev->id; 41 int nid = dev->id;
42 struct sysinfo i; 42 struct sysinfo i;
43 unsigned long inactive;
44 unsigned long active;
45 unsigned long free;
46 43
47 si_meminfo_node(&i, nid); 44 si_meminfo_node(&i, nid);
48 __get_zone_counts(&active, &inactive, &free, NODE_DATA(nid));
49
50 45
51 n = sprintf(buf, "\n" 46 n = sprintf(buf, "\n"
52 "Node %d MemTotal: %8lu kB\n" 47 "Node %d MemTotal: %8lu kB\n"
@@ -74,8 +69,8 @@ static ssize_t node_read_meminfo(struct sys_device * dev, char * buf)
74 nid, K(i.totalram), 69 nid, K(i.totalram),
75 nid, K(i.freeram), 70 nid, K(i.freeram),
76 nid, K(i.totalram - i.freeram), 71 nid, K(i.totalram - i.freeram),
77 nid, K(active), 72 nid, node_page_state(nid, NR_ACTIVE),
78 nid, K(inactive), 73 nid, node_page_state(nid, NR_INACTIVE),
79#ifdef CONFIG_HIGHMEM 74#ifdef CONFIG_HIGHMEM
80 nid, K(i.totalhigh), 75 nid, K(i.totalhigh),
81 nid, K(i.freehigh), 76 nid, K(i.freehigh),