Commit c8d1a1ac160421fda233def89065149ba7b0a00a

Authored by Eric W. Biederman
Committed by Linus Torvalds
1 parent 77f6dfb129

[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 <ebiederm@xmission.com>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/frv/kernel/sysctl.c
... ... @@ -197,7 +197,7 @@
197 197 */
198 198 static int __init frv_sysctl_init(void)
199 199 {
200   - register_sysctl_table(frv_dir_table, 1);
  200 + register_sysctl_table(frv_dir_table, 0);
201 201 return 0;
202 202 }
203 203