diff options
Diffstat (limited to 'net/x25')
-rw-r--r-- | net/x25/x25_proc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/x25/x25_proc.c b/net/x25/x25_proc.c index 7405b9c5b7f2..7d55e50c936f 100644 --- a/net/x25/x25_proc.c +++ b/net/x25/x25_proc.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/proc_fs.h> | 21 | #include <linux/proc_fs.h> |
22 | #include <linux/seq_file.h> | 22 | #include <linux/seq_file.h> |
23 | #include <net/net_namespace.h> | ||
23 | #include <net/sock.h> | 24 | #include <net/sock.h> |
24 | #include <net/x25.h> | 25 | #include <net/x25.h> |
25 | 26 | ||
@@ -301,7 +302,7 @@ int __init x25_proc_init(void) | |||
301 | struct proc_dir_entry *p; | 302 | struct proc_dir_entry *p; |
302 | int rc = -ENOMEM; | 303 | int rc = -ENOMEM; |
303 | 304 | ||
304 | x25_proc_dir = proc_mkdir("x25", proc_net); | 305 | x25_proc_dir = proc_mkdir("x25", init_net.proc_net); |
305 | if (!x25_proc_dir) | 306 | if (!x25_proc_dir) |
306 | goto out; | 307 | goto out; |
307 | 308 | ||
@@ -328,7 +329,7 @@ out_forward: | |||
328 | out_socket: | 329 | out_socket: |
329 | remove_proc_entry("route", x25_proc_dir); | 330 | remove_proc_entry("route", x25_proc_dir); |
330 | out_route: | 331 | out_route: |
331 | remove_proc_entry("x25", proc_net); | 332 | remove_proc_entry("x25", init_net.proc_net); |
332 | goto out; | 333 | goto out; |
333 | } | 334 | } |
334 | 335 | ||
@@ -337,7 +338,7 @@ void __exit x25_proc_exit(void) | |||
337 | remove_proc_entry("forward", x25_proc_dir); | 338 | remove_proc_entry("forward", x25_proc_dir); |
338 | remove_proc_entry("route", x25_proc_dir); | 339 | remove_proc_entry("route", x25_proc_dir); |
339 | remove_proc_entry("socket", x25_proc_dir); | 340 | remove_proc_entry("socket", x25_proc_dir); |
340 | remove_proc_entry("x25", proc_net); | 341 | remove_proc_entry("x25", init_net.proc_net); |
341 | } | 342 | } |
342 | 343 | ||
343 | #else /* CONFIG_PROC_FS */ | 344 | #else /* CONFIG_PROC_FS */ |