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 @@ static void *get_ipc(ctl_table *table)
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 @@ static int proc_ipc_dointvec(ctl_table *table, int write,
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 @@ static int proc_ipc_dointvec_minmax(ctl_table *table, int write,
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 @@ static int proc_ipc_dointvec_minmax_orphans(ctl_table *table, int write,
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 @@ static int proc_ipc_callback_dointvec_minmax(ctl_table *table, int write,
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 @@ static void ipc_auto_callback(int val)
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 ;
0 commit comments