From: Eric W. Biederman Since the binary sysctl numbers are unique putting the registered sysctls at the head of the sysctl list where they can override existing sysctls serves no useful purpose. Signed-off-by: Eric W. Biederman Acked-by: David Howells Signed-off-by: Andrew Morton --- arch/frv/kernel/sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/frv/kernel/sysctl.c~sysctl-frv-remove-unnecessary-insert_at_head-flag arch/frv/kernel/sysctl.c --- a/arch/frv/kernel/sysctl.c~sysctl-frv-remove-unnecessary-insert_at_head-flag +++ a/arch/frv/kernel/sysctl.c @@ -197,7 +197,7 @@ static struct ctl_table frv_dir_table[] */ static int __init frv_sysctl_init(void) { - register_sysctl_table(frv_dir_table, 1); + register_sysctl_table(frv_dir_table, 0); return 0; } _