aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/node.c
diff options
context:
space:
mode:
authorChristoph Lameter <clameter@sgi.com>2006-06-30 04:55:34 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-30 14:25:34 -0400
commit65ba55f500a37272985d071c9bbb35256a2f7c14 (patch)
treee7735326ef2d2dca9d00a6c5ae47e9eb03c7834f /drivers/base/node.c
parent2244b95a7bcf8d24196f8a3a44187ba5dfff754c (diff)
[PATCH] zoned vm counters: convert nr_mapped to per zone counter
nr_mapped is important because it allows a determination of how many pages of a zone are not mapped, which would allow a more efficient means of determining when we need to reclaim memory in a zone. We take the nr_mapped field out of the page state structure and define a new per zone counter named NR_FILE_MAPPED (the anonymous pages will be split off from NR_MAPPED in the next patch). We replace the use of nr_mapped in various kernel locations. This avoids the looping over all processors in try_to_free_pages(), writeback, reclaim (swap + zone reclaim). [akpm@osdl.org: bugfix] Signed-off-by: Christoph Lameter <clameter@sgi.com> Cc: Trond Myklebust <trond.myklebust@fys.uio.no> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/base/node.c')
-rw-r--r--drivers/base/node.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/base/node.c b/drivers/base/node.c
index eae2bdc183bb..8b1232320a99 100644
--- a/drivers/base/node.c
+++ b/drivers/base/node.c
@@ -54,8 +54,6 @@ static ssize_t node_read_meminfo(struct sys_device * dev, char * buf)
54 ps.nr_dirty = 0; 54 ps.nr_dirty = 0;
55 if ((long)ps.nr_writeback < 0) 55 if ((long)ps.nr_writeback < 0)
56 ps.nr_writeback = 0; 56 ps.nr_writeback = 0;
57 if ((long)ps.nr_mapped < 0)
58 ps.nr_mapped = 0;
59 if ((long)ps.nr_slab < 0) 57 if ((long)ps.nr_slab < 0)
60 ps.nr_slab = 0; 58 ps.nr_slab = 0;
61 59
@@ -84,7 +82,7 @@ static ssize_t node_read_meminfo(struct sys_device * dev, char * buf)
84 nid, K(i.freeram - i.freehigh), 82 nid, K(i.freeram - i.freehigh),
85 nid, K(ps.nr_dirty), 83 nid, K(ps.nr_dirty),
86 nid, K(ps.nr_writeback), 84 nid, K(ps.nr_writeback),
87 nid, K(ps.nr_mapped), 85 nid, K(node_page_state(nid, NR_FILE_MAPPED)),
88 nid, K(ps.nr_slab)); 86 nid, K(ps.nr_slab));
89 n += hugetlb_report_node_meminfo(nid, buf + n); 87 n += hugetlb_report_node_meminfo(nid, buf + n);
90 return n; 88 return n;