aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/raw.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-01-14 08:36:50 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:02:07 -0500
commita308da1627d711fd0c7542bfe892abc78d65d215 (patch)
tree58dd91e39eea89a8a635f3d264f012fa2fcb624c /net/ipv4/raw.c
parente5ba31f11f6cae785e893d5d10abd612fef0b6bc (diff)
[NETNS][RAW]: Create the /proc/net/raw(6) in each namespace.
To do so, just register the proper subsystem and create files in ->init callbacks. No other special per-namespace handling for raw sockets is required. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
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 */