Commit 306421f3 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by Linus Torvalds

[PATCH] sysctl: C99 convert ctl_tables in arch/x86_64/ia32/ia32_binfmt.c

Signed-off-by: default avatarEric W. Biederman <ebiederm@xmission.com>
Acked-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f3854517
...@@ -344,15 +344,25 @@ EXPORT_SYMBOL(ia32_setup_arg_pages); ...@@ -344,15 +344,25 @@ EXPORT_SYMBOL(ia32_setup_arg_pages);
#include <linux/sysctl.h> #include <linux/sysctl.h>
static ctl_table abi_table2[] = { static ctl_table abi_table2[] = {
{ 99, "vsyscall32", &sysctl_vsyscall32, sizeof(int), 0644, NULL, {
proc_dointvec }, .ctl_name = 99,
{ 0, } .procname = "vsyscall32",
.data = &sysctl_vsyscall32,
.maxlen = sizeof(int),
.mode = 0644,
.proc_handler = proc_dointvec
},
{}
}; };
static ctl_table abi_root_table2[] = { static ctl_table abi_root_table2[] = {
{ .ctl_name = CTL_ABI, .procname = "abi", .mode = 0555, {
.child = abi_table2 }, .ctl_name = CTL_ABI,
{ 0 }, .procname = "abi",
.mode = 0555,
.child = abi_table2
},
{}
}; };
static __init int ia32_binfmt_init(void) static __init int ia32_binfmt_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment