diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-06-30 04:55:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-30 14:25:34 -0400 |
commit | 65ba55f500a37272985d071c9bbb35256a2f7c14 (patch) | |
tree | e7735326ef2d2dca9d00a6c5ae47e9eb03c7834f /mm/vmstat.c | |
parent | 2244b95a7bcf8d24196f8a3a44187ba5dfff754c (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 'mm/vmstat.c')
-rw-r--r-- | mm/vmstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/vmstat.c b/mm/vmstat.c index 210f9bbbb04f..4800091c129a 100644 --- a/mm/vmstat.c +++ b/mm/vmstat.c | |||
@@ -401,13 +401,13 @@ struct seq_operations fragmentation_op = { | |||
401 | 401 | ||
402 | static char *vmstat_text[] = { | 402 | static char *vmstat_text[] = { |
403 | /* Zoned VM counters */ | 403 | /* Zoned VM counters */ |
404 | "nr_mapped", | ||
404 | 405 | ||
405 | /* Page state */ | 406 | /* Page state */ |
406 | "nr_dirty", | 407 | "nr_dirty", |
407 | "nr_writeback", | 408 | "nr_writeback", |
408 | "nr_unstable", | 409 | "nr_unstable", |
409 | "nr_page_table_pages", | 410 | "nr_page_table_pages", |
410 | "nr_mapped", | ||
411 | "nr_slab", | 411 | "nr_slab", |
412 | 412 | ||
413 | "pgpgin", | 413 | "pgpgin", |