[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>
This commit is contained in:
parent
e3c6449dcd
commit
f3854517f3
2 changed files with 2 additions and 2 deletions
|
@ -357,7 +357,7 @@ static ctl_table abi_root_table2[] = {
|
||||||
|
|
||||||
static __init int ia32_binfmt_init(void)
|
static __init int ia32_binfmt_init(void)
|
||||||
{
|
{
|
||||||
register_sysctl_table(abi_root_table2, 1);
|
register_sysctl_table(abi_root_table2, 0);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
__initcall(ia32_binfmt_init);
|
__initcall(ia32_binfmt_init);
|
||||||
|
|
|
@ -724,7 +724,7 @@ static ctl_table debug_root_table2[] = {
|
||||||
|
|
||||||
static __init int x8664_sysctl_init(void)
|
static __init int x8664_sysctl_init(void)
|
||||||
{
|
{
|
||||||
register_sysctl_table(debug_root_table2, 1);
|
register_sysctl_table(debug_root_table2, 0);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
__initcall(x8664_sysctl_init);
|
__initcall(x8664_sysctl_init);
|
||||||
|
|
Loading…
Add table
Reference in a new issue