From: Eric W. Biederman Date: Wed, 14 Feb 2007 08:33:38 +0000 (-0800) Subject: [PATCH] sysctl: frv: remove unnecessary insert_at_head flag X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c8d1a1ac160421fda233def89065149ba7b0a00a;p=linux-beck.git [PATCH] sysctl: frv: remove unnecessary insert_at_head flag 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 Signed-off-by: Linus Torvalds --- diff --git a/arch/frv/kernel/sysctl.c b/arch/frv/kernel/sysctl.c index 2f4da32fba20..37528ebef759 100644 --- a/arch/frv/kernel/sysctl.c +++ b/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; }