Commit a5c5928b759d8c7382cccc7be36769a68046cc58

Authored by Joe Perches
Committed by Linus Torvalds
1 parent d6f50c95e0

ipc: convert use of typedef ctl_table to struct ctl_table

This typedef is unnecessary and should just be removed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 2 changed files with 13 additions and 13 deletions Side-by-side Diff

... ... @@ -18,7 +18,7 @@
18 18 #include <linux/msg.h>
19 19 #include "util.h"
20 20  
21   -static void *get_ipc(ctl_table *table)
  21 +static void *get_ipc(struct ctl_table *table)
22 22 {
23 23 char *which = table->data;
24 24 struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
... ... @@ -27,7 +27,7 @@
27 27 }
28 28  
29 29 #ifdef CONFIG_PROC_SYSCTL
30   -static int proc_ipc_dointvec(ctl_table *table, int write,
  30 +static int proc_ipc_dointvec(struct ctl_table *table, int write,
31 31 void __user *buffer, size_t *lenp, loff_t *ppos)
32 32 {
33 33 struct ctl_table ipc_table;
... ... @@ -38,7 +38,7 @@
38 38 return proc_dointvec(&ipc_table, write, buffer, lenp, ppos);
39 39 }
40 40  
41   -static int proc_ipc_dointvec_minmax(ctl_table *table, int write,
  41 +static int proc_ipc_dointvec_minmax(struct ctl_table *table, int write,
42 42 void __user *buffer, size_t *lenp, loff_t *ppos)
43 43 {
44 44 struct ctl_table ipc_table;
... ... @@ -49,7 +49,7 @@
49 49 return proc_dointvec_minmax(&ipc_table, write, buffer, lenp, ppos);
50 50 }
51 51  
52   -static int proc_ipc_dointvec_minmax_orphans(ctl_table *table, int write,
  52 +static int proc_ipc_dointvec_minmax_orphans(struct ctl_table *table, int write,
53 53 void __user *buffer, size_t *lenp, loff_t *ppos)
54 54 {
55 55 struct ipc_namespace *ns = current->nsproxy->ipc_ns;
... ... @@ -62,7 +62,7 @@
62 62 return err;
63 63 }
64 64  
65   -static int proc_ipc_callback_dointvec_minmax(ctl_table *table, int write,
  65 +static int proc_ipc_callback_dointvec_minmax(struct ctl_table *table, int write,
66 66 void __user *buffer, size_t *lenp, loff_t *ppos)
67 67 {
68 68 struct ctl_table ipc_table;
... ... @@ -85,7 +85,7 @@
85 85 return rc;
86 86 }
87 87  
88   -static int proc_ipc_doulongvec_minmax(ctl_table *table, int write,
  88 +static int proc_ipc_doulongvec_minmax(struct ctl_table *table, int write,
89 89 void __user *buffer, size_t *lenp, loff_t *ppos)
90 90 {
91 91 struct ctl_table ipc_table;
... ... @@ -119,7 +119,7 @@
119 119 }
120 120 }
121 121  
122   -static int proc_ipcauto_dointvec_minmax(ctl_table *table, int write,
  122 +static int proc_ipcauto_dointvec_minmax(struct ctl_table *table, int write,
123 123 void __user *buffer, size_t *lenp, loff_t *ppos)
124 124 {
125 125 struct ctl_table ipc_table;
... ... @@ -14,7 +14,7 @@
14 14 #include <linux/sysctl.h>
15 15  
16 16 #ifdef CONFIG_PROC_SYSCTL
17   -static void *get_mq(ctl_table *table)
  17 +static void *get_mq(struct ctl_table *table)
18 18 {
19 19 char *which = table->data;
20 20 struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
... ... @@ -22,7 +22,7 @@
22 22 return which;
23 23 }
24 24  
25   -static int proc_mq_dointvec(ctl_table *table, int write,
  25 +static int proc_mq_dointvec(struct ctl_table *table, int write,
26 26 void __user *buffer, size_t *lenp, loff_t *ppos)
27 27 {
28 28 struct ctl_table mq_table;
... ... @@ -32,7 +32,7 @@
32 32 return proc_dointvec(&mq_table, write, buffer, lenp, ppos);
33 33 }
34 34  
35   -static int proc_mq_dointvec_minmax(ctl_table *table, int write,
  35 +static int proc_mq_dointvec_minmax(struct ctl_table *table, int write,
36 36 void __user *buffer, size_t *lenp, loff_t *ppos)
37 37 {
38 38 struct ctl_table mq_table;
... ... @@ -53,7 +53,7 @@
53 53 static int msg_maxsize_limit_min = MIN_MSGSIZEMAX;
54 54 static int msg_maxsize_limit_max = HARD_MSGSIZEMAX;
55 55  
56   -static ctl_table mq_sysctls[] = {
  56 +static struct ctl_table mq_sysctls[] = {
57 57 {
58 58 .procname = "queues_max",
59 59 .data = &init_ipc_ns.mq_queues_max,
... ... @@ -100,7 +100,7 @@
100 100 {}
101 101 };
102 102  
103   -static ctl_table mq_sysctl_dir[] = {
  103 +static struct ctl_table mq_sysctl_dir[] = {
104 104 {
105 105 .procname = "mqueue",
106 106 .mode = 0555,
... ... @@ -109,7 +109,7 @@
109 109 {}
110 110 };
111 111  
112   -static ctl_table mq_sysctl_root[] = {
  112 +static struct ctl_table mq_sysctl_root[] = {
113 113 {
114 114 .procname = "fs",
115 115 .mode = 0555,