mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
sysctl x86: Remove dead binary sysctl support
Now that sys_sysctl is a generic wrapper around /proc/sys .ctl_name and .strategy members of sysctl tables are dead code. Remove them. Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
This commit is contained in:
parent
a09b6e8118
commit
24a065624d
2 changed files with 1 additions and 2 deletions
|
@ -237,7 +237,7 @@ static ctl_table kernel_table2[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static ctl_table kernel_root_table2[] = {
|
static ctl_table kernel_root_table2[] = {
|
||||||
{ .ctl_name = CTL_KERN, .procname = "kernel", .mode = 0555,
|
{ .procname = "kernel", .mode = 0555,
|
||||||
.child = kernel_table2 },
|
.child = kernel_table2 },
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
|
@ -393,7 +393,6 @@ static ctl_table abi_table2[] = {
|
||||||
|
|
||||||
static ctl_table abi_root_table2[] = {
|
static ctl_table abi_root_table2[] = {
|
||||||
{
|
{
|
||||||
.ctl_name = CTL_ABI,
|
|
||||||
.procname = "abi",
|
.procname = "abi",
|
||||||
.mode = 0555,
|
.mode = 0555,
|
||||||
.child = abi_table2
|
.child = abi_table2
|
||||||
|
|
Loading…
Reference in a new issue