diff options
-rw-r--r-- | kernel/sysctl.c | 2 | ||||
-rw-r--r-- | kernel/utsname_sysctl.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index 7a910b9081e8..db19e3e2aa4b 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -202,7 +202,7 @@ static int proc_dostring_coredump(struct ctl_table *table, int write, | |||
202 | /* Note: sysrq code uses it's own private copy */ | 202 | /* Note: sysrq code uses it's own private copy */ |
203 | static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE; | 203 | static int __sysrq_enabled = CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE; |
204 | 204 | ||
205 | static int sysrq_sysctl_handler(ctl_table *table, int write, | 205 | static int sysrq_sysctl_handler(struct ctl_table *table, int write, |
206 | void __user *buffer, size_t *lenp, | 206 | void __user *buffer, size_t *lenp, |
207 | loff_t *ppos) | 207 | loff_t *ppos) |
208 | { | 208 | { |
diff --git a/kernel/utsname_sysctl.c b/kernel/utsname_sysctl.c index 6fbe811c7ad1..c8eac43267e9 100644 --- a/kernel/utsname_sysctl.c +++ b/kernel/utsname_sysctl.c | |||
@@ -17,7 +17,7 @@ | |||
17 | 17 | ||
18 | #ifdef CONFIG_PROC_SYSCTL | 18 | #ifdef CONFIG_PROC_SYSCTL |
19 | 19 | ||
20 | static void *get_uts(ctl_table *table, int write) | 20 | static void *get_uts(struct ctl_table *table, int write) |
21 | { | 21 | { |
22 | char *which = table->data; | 22 | char *which = table->data; |
23 | struct uts_namespace *uts_ns; | 23 | struct uts_namespace *uts_ns; |
@@ -32,7 +32,7 @@ static void *get_uts(ctl_table *table, int write) | |||
32 | return which; | 32 | return which; |
33 | } | 33 | } |
34 | 34 | ||
35 | static void put_uts(ctl_table *table, int write, void *which) | 35 | static void put_uts(struct ctl_table *table, int write, void *which) |
36 | { | 36 | { |
37 | if (!write) | 37 | if (!write) |
38 | up_read(&uts_sem); | 38 | up_read(&uts_sem); |
@@ -44,7 +44,7 @@ static void put_uts(ctl_table *table, int write, void *which) | |||
44 | * Special case of dostring for the UTS structure. This has locks | 44 | * Special case of dostring for the UTS structure. This has locks |
45 | * to observe. Should this be in kernel/sys.c ???? | 45 | * to observe. Should this be in kernel/sys.c ???? |
46 | */ | 46 | */ |
47 | static int proc_do_uts_string(ctl_table *table, int write, | 47 | static int proc_do_uts_string(struct ctl_table *table, int write, |
48 | void __user *buffer, size_t *lenp, loff_t *ppos) | 48 | void __user *buffer, size_t *lenp, loff_t *ppos) |
49 | { | 49 | { |
50 | struct ctl_table uts_table; | 50 | struct ctl_table uts_table; |