Commit 6f8fd1d7 authored by Joe Perches's avatar Joe Perches Committed by Linus Torvalds

sysctl: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a5c5928b
...@@ -202,7 +202,7 @@ static int proc_dostring_coredump(struct ctl_table *table, int write, ...@@ -202,7 +202,7 @@ static int proc_dostring_coredump(struct ctl_table *table, int write,
/* Note: sysrq code uses it's own private copy */ /* Note: sysrq code uses it's own private copy */
static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE; static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE;
static int sysrq_sysctl_handler(ctl_table *table, int write, static int sysrq_sysctl_handler(struct ctl_table *table, int write,
void __user *buffer, size_t *lenp, void __user *buffer, size_t *lenp,
loff_t *ppos) loff_t *ppos)
{ {
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#ifdef CONFIG_PROC_SYSCTL #ifdef CONFIG_PROC_SYSCTL
static void *get_uts(ctl_table *table, int write) static void *get_uts(struct ctl_table *table, int write)
{ {
char *which = table->data; char *which = table->data;
struct uts_namespace *uts_ns; struct uts_namespace *uts_ns;
...@@ -32,7 +32,7 @@ static void *get_uts(ctl_table *table, int write) ...@@ -32,7 +32,7 @@ static void *get_uts(ctl_table *table, int write)
return which; return which;
} }
static void put_uts(ctl_table *table, int write, void *which) static void put_uts(struct ctl_table *table, int write, void *which)
{ {
if (!write) if (!write)
up_read(&uts_sem); up_read(&uts_sem);
...@@ -44,7 +44,7 @@ static void put_uts(ctl_table *table, int write, void *which) ...@@ -44,7 +44,7 @@ static void put_uts(ctl_table *table, int write, void *which)
* Special case of dostring for the UTS structure. This has locks * Special case of dostring for the UTS structure. This has locks
* to observe. Should this be in kernel/sys.c ???? * to observe. Should this be in kernel/sys.c ????
*/ */
static int proc_do_uts_string(ctl_table *table, int write, static int proc_do_uts_string(struct ctl_table *table, int write,
void __user *buffer, size_t *lenp, loff_t *ppos) void __user *buffer, size_t *lenp, loff_t *ppos)
{ {
struct ctl_table uts_table; struct ctl_table uts_table;
......
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