diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-06-30 04:55:37 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-30 14:25:35 -0400 |
commit | 34aa1330f9b3c5783d269851d467326525207422 (patch) | |
tree | a47db4fa53527ea937dee9e763267ab21865ce11 /kernel | |
parent | f3dbd34460ff54962d3e3244b6bcb7f5295356e6 (diff) |
[PATCH] zoned vm counters: zone_reclaim: remove /proc/sys/vm/zone_reclaim_interval
The zone_reclaim_interval was necessary because we were not able to determine
how many unmapped pages exist in a zone. Therefore we had to scan in
intervals to figure out if any pages were unmapped.
With the zoned counters and NR_ANON_PAGES we now know the number of pagecache
pages and the number of mapped pages in a zone. So we can simply skip the
reclaim if there is an insufficient number of unmapped pages. We use
SWAP_CLUSTER_MAX as the boundary.
Drop all support for /proc/sys/vm/zone_reclaim_interval.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/sysctl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 93a2c5398648..ee0db45e2438 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -933,15 +933,6 @@ static ctl_table vm_table[] = { | |||
933 | .strategy = &sysctl_intvec, | 933 | .strategy = &sysctl_intvec, |
934 | .extra1 = &zero, | 934 | .extra1 = &zero, |
935 | }, | 935 | }, |
936 | { | ||
937 | .ctl_name = VM_ZONE_RECLAIM_INTERVAL, | ||
938 | .procname = "zone_reclaim_interval", | ||
939 | .data = &zone_reclaim_interval, | ||
940 | .maxlen = sizeof(zone_reclaim_interval), | ||
941 | .mode = 0644, | ||
942 | .proc_handler = &proc_dointvec_jiffies, | ||
943 | .strategy = &sysctl_jiffies, | ||
944 | }, | ||
945 | #endif | 936 | #endif |
946 | #ifdef CONFIG_X86_32 | 937 | #ifdef CONFIG_X86_32 |
947 | { | 938 | { |