* [PATCH] mm: move the scan_unevictable_pages sysctl to the vm table
@ 2009-04-09 9:42 Peter Zijlstra
2009-04-09 14:04 ` Lee Schermerhorn
2009-04-09 14:17 ` Rik van Riel
0 siblings, 2 replies; 3+ messages in thread
From: Peter Zijlstra @ 2009-04-09 9:42 UTC (permalink / raw)
To: Andrew Morton, Rik van Riel, lee.schermerhorn; +Cc: linux-mm, linux-kernel
Subject: mm: move the scan_unevictable_pages sysctl to the vm table
From: Peter Zijlstra <a.p.zijlstra@chello.nl>
Date: Thu Apr 09 11:38:45 CEST 2009
vm knobs should go in the vm table. Probably too late for randomize_va_space
though.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
---
kernel/sysctl.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
Index: linux-2.6/kernel/sysctl.c
===================================================================
--- linux-2.6.orig/kernel/sysctl.c
+++ linux-2.6/kernel/sysctl.c
@@ -914,16 +914,6 @@ static struct ctl_table kern_table[] = {
.proc_handler = &proc_dointvec,
},
#endif
-#ifdef CONFIG_UNEVICTABLE_LRU
- {
- .ctl_name = CTL_UNNUMBERED,
- .procname = "scan_unevictable_pages",
- .data = &scan_unevictable_pages,
- .maxlen = sizeof(scan_unevictable_pages),
- .mode = 0644,
- .proc_handler = &scan_unevictable_handler,
- },
-#endif
#ifdef CONFIG_SLOW_WORK
{
.ctl_name = CTL_UNNUMBERED,
@@ -1324,6 +1314,16 @@ static struct ctl_table vm_table[] = {
.extra2 = &one,
},
#endif
+#ifdef CONFIG_UNEVICTABLE_LRU
+ {
+ .ctl_name = CTL_UNNUMBERED,
+ .procname = "scan_unevictable_pages",
+ .data = &scan_unevictable_pages,
+ .maxlen = sizeof(scan_unevictable_pages),
+ .mode = 0644,
+ .proc_handler = &scan_unevictable_handler,
+ },
+#endif
/*
* NOTE: do not add new entries to this table unless you have read
* Documentation/sysctl/ctl_unnumbered.txt
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mm: move the scan_unevictable_pages sysctl to the vm table
2009-04-09 9:42 [PATCH] mm: move the scan_unevictable_pages sysctl to the vm table Peter Zijlstra
@ 2009-04-09 14:04 ` Lee Schermerhorn
2009-04-09 14:17 ` Rik van Riel
1 sibling, 0 replies; 3+ messages in thread
From: Lee Schermerhorn @ 2009-04-09 14:04 UTC (permalink / raw)
To: Peter Zijlstra; +Cc: Andrew Morton, Rik van Riel, linux-mm, linux-kernel
On Thu, 2009-04-09 at 11:42 +0200, Peter Zijlstra wrote:
> Subject: mm: move the scan_unevictable_pages sysctl to the vm table
> From: Peter Zijlstra <a.p.zijlstra@chello.nl>
> Date: Thu Apr 09 11:38:45 CEST 2009
>
> vm knobs should go in the vm table. Probably too late for randomize_va_space
> though.
I was surprised to see "scan_unevictable_pages" in the kernel table.
This must be the result of a merge glitch. I originally put this at the
end of the vm table. Just went back and looked at some older patches to
be sure. E.g.,
http://marc.info/?l=linux-mm&m=121321022603288&w=4
It had been moved to the kernel table by the time the unevictable lru
was merged upstream:
http://marc.info/?l=linux-mm-commits&m=122453486931267&w=4
Anyway...
>
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Acked-by: Lee Schermerhorn <lee.schermerhorn@hp.com>
> ---
> kernel/sysctl.c | 20 ++++++++++----------
> 1 file changed, 10 insertions(+), 10 deletions(-)
>
> Index: linux-2.6/kernel/sysctl.c
> ===================================================================
> --- linux-2.6.orig/kernel/sysctl.c
> +++ linux-2.6/kernel/sysctl.c
> @@ -914,16 +914,6 @@ static struct ctl_table kern_table[] = {
> .proc_handler = &proc_dointvec,
> },
> #endif
> -#ifdef CONFIG_UNEVICTABLE_LRU
> - {
> - .ctl_name = CTL_UNNUMBERED,
> - .procname = "scan_unevictable_pages",
> - .data = &scan_unevictable_pages,
> - .maxlen = sizeof(scan_unevictable_pages),
> - .mode = 0644,
> - .proc_handler = &scan_unevictable_handler,
> - },
> -#endif
> #ifdef CONFIG_SLOW_WORK
> {
> .ctl_name = CTL_UNNUMBERED,
> @@ -1324,6 +1314,16 @@ static struct ctl_table vm_table[] = {
> .extra2 = &one,
> },
> #endif
> +#ifdef CONFIG_UNEVICTABLE_LRU
> + {
> + .ctl_name = CTL_UNNUMBERED,
> + .procname = "scan_unevictable_pages",
> + .data = &scan_unevictable_pages,
> + .maxlen = sizeof(scan_unevictable_pages),
> + .mode = 0644,
> + .proc_handler = &scan_unevictable_handler,
> + },
> +#endif
> /*
> * NOTE: do not add new entries to this table unless you have read
> * Documentation/sysctl/ctl_unnumbered.txt
>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mm: move the scan_unevictable_pages sysctl to the vm table
2009-04-09 9:42 [PATCH] mm: move the scan_unevictable_pages sysctl to the vm table Peter Zijlstra
2009-04-09 14:04 ` Lee Schermerhorn
@ 2009-04-09 14:17 ` Rik van Riel
1 sibling, 0 replies; 3+ messages in thread
From: Rik van Riel @ 2009-04-09 14:17 UTC (permalink / raw)
To: Peter Zijlstra; +Cc: Andrew Morton, lee.schermerhorn, linux-mm, linux-kernel
Peter Zijlstra wrote:
> Subject: mm: move the scan_unevictable_pages sysctl to the vm table
> From: Peter Zijlstra <a.p.zijlstra@chello.nl>
> Date: Thu Apr 09 11:38:45 CEST 2009
>
> vm knobs should go in the vm table. Probably too late for randomize_va_space
> though.
>
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
>
Dunno if the merge error is mine or someone else's or if
we should all blame patch, but ...
Acked-by: Rik van Riel <riel@redhat.com>
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-04-09 14:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-09 9:42 [PATCH] mm: move the scan_unevictable_pages sysctl to the vm table Peter Zijlstra
2009-04-09 14:04 ` Lee Schermerhorn
2009-04-09 14:17 ` Rik van Riel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox