aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/raw.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/raw.c')
-rw-r--r--net/ipv4/raw.c22
1 files changed, 19 insertions, 3 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c
index 206c869db921..91a52184351d 100644
--- a/net/ipv4/raw.c
+++ b/net/ipv4/raw.c
@@ -1003,15 +1003,31 @@ static const struct file_operations raw_seq_fops = {
1003 .release = seq_release_net, 1003 .release = seq_release_net,
1004}; 1004};
1005 1005
1006int __init raw_proc_init(void) 1006static __net_init int raw_init_net(struct net *net)
1007{ 1007{
1008 if (!proc_net_fops_create(&init_net, "raw", S_IRUGO, &raw_seq_fops)) 1008 if (!proc_net_fops_create(net, "raw", S_IRUGO, &raw_seq_fops))
1009 return -ENOMEM; 1009 return -ENOMEM;
1010
1010 return 0; 1011 return 0;
1011} 1012}
1012 1013
1014static __net_exit void raw_exit_net(struct net *net)
1015{
1016 proc_net_remove(net, "raw");
1017}
1018
1019static __net_initdata struct pernet_operations raw_net_ops = {
1020 .init = raw_init_net,
1021 .exit = raw_exit_net,
1022};
1023
1024int __init raw_proc_init(void)
1025{
1026 return register_pernet_subsys(&raw_net_ops);
1027}
1028
1013void __init raw_proc_exit(void) 1029void __init raw_proc_exit(void)
1014{ 1030{
1015 proc_net_remove(&init_net, "raw"); 1031 unregister_pernet_subsys(&raw_net_ops);
1016} 1032}
1017#endif /* CONFIG_PROC_FS */ 1033#endif /* CONFIG_PROC_FS */