diff options
author | Lee Schermerhorn <Lee.Schermerhorn@hp.com> | 2007-08-10 16:00:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-08-11 18:47:40 -0400 |
commit | 8daec965e7035bbf8d364fe7585bffac7222b87a (patch) | |
tree | 4f0caacf9793e6a9b4fc54317b7023db3bec6e78 /kernel/sysctl.c | |
parent | 202a21d6914369c1362f1ab50f0cbe92b9c38718 (diff) |
Fix missing numa_zonelist_order sysctl
Misplaced #endif is hiding the numa_zonelist_order sysctl when !SECURITY.
Signed-off-by: Lee Schermerhorn <lee.schermerhorn@hp.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 79c891e6266c..8bdb8c07e04f 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -1023,6 +1023,7 @@ static ctl_table vm_table[] = { | |||
1023 | .mode = 0644, | 1023 | .mode = 0644, |
1024 | .proc_handler = &proc_doulongvec_minmax, | 1024 | .proc_handler = &proc_doulongvec_minmax, |
1025 | }, | 1025 | }, |
1026 | #endif | ||
1026 | #ifdef CONFIG_NUMA | 1027 | #ifdef CONFIG_NUMA |
1027 | { | 1028 | { |
1028 | .ctl_name = CTL_UNNUMBERED, | 1029 | .ctl_name = CTL_UNNUMBERED, |
@@ -1034,7 +1035,6 @@ static ctl_table vm_table[] = { | |||
1034 | .strategy = &sysctl_string, | 1035 | .strategy = &sysctl_string, |
1035 | }, | 1036 | }, |
1036 | #endif | 1037 | #endif |
1037 | #endif | ||
1038 | #if defined(CONFIG_X86_32) || \ | 1038 | #if defined(CONFIG_X86_32) || \ |
1039 | (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL)) | 1039 | (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL)) |
1040 | { | 1040 | { |