From: Andrew Morton Don't add new sysctl numbers. Cc: Ingo Molnar Cc: Arjan van de Ven Cc: "Eric W. Biederman" Signed-off-by: Andrew Morton --- include/linux/sysctl.h | 1 - kernel/sysctl.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff -puN include/linux/sysctl.h~vdso-print-fatal-signals-use-ctl_unnumbered include/linux/sysctl.h --- a/include/linux/sysctl.h~vdso-print-fatal-signals-use-ctl_unnumbered +++ a/include/linux/sysctl.h @@ -106,7 +106,6 @@ enum KERN_CAP_BSET=14, /* int: capability bounding set */ KERN_PANIC=15, /* int: panic timeout */ KERN_REALROOTDEV=16, /* real root device to mount after initrd */ - KERN_PRINT_FATAL=17, /* int: print fatal signals (0/1) */ KERN_SPARC_REBOOT=21, /* reboot command on Sparc */ KERN_CTLALTDEL=22, /* int: allow ctl-alt-del to reboot */ diff -puN kernel/sysctl.c~vdso-print-fatal-signals-use-ctl_unnumbered kernel/sysctl.c --- a/kernel/sysctl.c~vdso-print-fatal-signals-use-ctl_unnumbered +++ a/kernel/sysctl.c @@ -275,7 +275,7 @@ static ctl_table kern_table[] = { }, #endif { - .ctl_name = KERN_PRINT_FATAL, + .ctl_name = CTL_UNNUMBERED, .procname = "print-fatal-signals", .data = &print_fatal_signals, .maxlen = sizeof(int), _