The patch titled Fix missing numa_zonelist_order sysctl has been added to the -mm tree. Its filename is fix-missing-numa_zonelist_order-sysctl.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Fix missing numa_zonelist_order sysctl From: Lee Schermerhorn <Lee.Schermerhorn@xxxxxx> Misplaced #endif is hiding the numa_zonelist_order sysctl when !SECURITY. [But, maybe reordering the zonelists is not such a good idea when ZONE_MOVABLE is populated?] Signed-off-by: Lee Schermerhorn <lee.schermerhorn@xxxxxx> Cc: Mel Gorman <mel@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sysctl.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/sysctl.c~fix-missing-numa_zonelist_order-sysctl kernel/sysctl.c --- a/kernel/sysctl.c~fix-missing-numa_zonelist_order-sysctl +++ a/kernel/sysctl.c @@ -1023,6 +1023,7 @@ static ctl_table vm_table[] = { .mode = 0644, .proc_handler = &proc_doulongvec_minmax, }, +#endif #ifdef CONFIG_NUMA { .ctl_name = CTL_UNNUMBERED, @@ -1034,7 +1035,6 @@ static ctl_table vm_table[] = { .strategy = &sysctl_string, }, #endif -#endif #if defined(CONFIG_X86_32) || \ (defined(CONFIG_SUPERH) && defined(CONFIG_VSYSCALL)) { _ Patches currently in -mm which might be from Lee.Schermerhorn@xxxxxx are fix-missing-numa_zonelist_order-sysctl.patch document-linux-memory-policy-v3.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html