diff options
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/sysctl_net_core.c | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/net/core/sysctl_net_core.c b/net/core/sysctl_net_core.c index 277c8faaf732..e322713e590a 100644 --- a/net/core/sysctl_net_core.c +++ b/net/core/sysctl_net_core.c | |||
@@ -10,10 +10,11 @@ | |||
10 | #include <linux/module.h> | 10 | #include <linux/module.h> |
11 | #include <linux/socket.h> | 11 | #include <linux/socket.h> |
12 | #include <linux/netdevice.h> | 12 | #include <linux/netdevice.h> |
13 | #include <linux/init.h> | ||
13 | #include <net/sock.h> | 14 | #include <net/sock.h> |
14 | #include <net/xfrm.h> | 15 | #include <net/xfrm.h> |
15 | 16 | ||
16 | ctl_table core_table[] = { | 17 | static struct ctl_table net_core_table[] = { |
17 | #ifdef CONFIG_NET | 18 | #ifdef CONFIG_NET |
18 | { | 19 | { |
19 | .ctl_name = NET_CORE_WMEM_MAX, | 20 | .ctl_name = NET_CORE_WMEM_MAX, |
@@ -149,3 +150,19 @@ ctl_table core_table[] = { | |||
149 | }, | 150 | }, |
150 | { .ctl_name = 0 } | 151 | { .ctl_name = 0 } |
151 | }; | 152 | }; |
153 | |||
154 | static __initdata struct ctl_path net_core_path[] = { | ||
155 | { .procname = "net", .ctl_name = CTL_NET, }, | ||
156 | { .procname = "core", .ctl_name = NET_CORE, }, | ||
157 | { }, | ||
158 | }; | ||
159 | |||
160 | static __init int sysctl_core_init(void) | ||
161 | { | ||
162 | struct ctl_table_header *hdr; | ||
163 | |||
164 | hdr = register_sysctl_paths(net_core_path, net_core_table); | ||
165 | return hdr == NULL ? -ENOMEM : 0; | ||
166 | } | ||
167 | |||
168 | __initcall(sysctl_core_init); | ||