diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 03:33:49 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 11:09:57 -0500 |
commit | f3854517f3b4cf372d3d5a2a71969c9b26090b7a (patch) | |
tree | dd2e102d3a314619f3142a8ae58ae8bfd1df65da /arch/x86_64/ia32 | |
parent | e3c6449dcdfa023ca45b7ef1f7dce102f34f25ad (diff) |
[PATCH] sysctl: x86_64: remove unnecessary use of insert_at_head
The only sysctl x86_64 provides are not provided elsewhere, so insert_at_head
is unnecessary.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Acked-by: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86_64/ia32')
-rw-r--r-- | arch/x86_64/ia32/ia32_binfmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/ia32/ia32_binfmt.c b/arch/x86_64/ia32/ia32_binfmt.c index 6efe04f3cbca..44c83be70e08 100644 --- a/arch/x86_64/ia32/ia32_binfmt.c +++ b/arch/x86_64/ia32/ia32_binfmt.c | |||
@@ -357,7 +357,7 @@ static ctl_table abi_root_table2[] = { | |||
357 | 357 | ||
358 | static __init int ia32_binfmt_init(void) | 358 | static __init int ia32_binfmt_init(void) |
359 | { | 359 | { |
360 | register_sysctl_table(abi_root_table2, 1); | 360 | register_sysctl_table(abi_root_table2, 0); |
361 | return 0; | 361 | return 0; |
362 | } | 362 | } |
363 | __initcall(ia32_binfmt_init); | 363 | __initcall(ia32_binfmt_init); |