aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ip_fragment.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@openvz.org>2008-01-22 09:12:39 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:10:40 -0500
commit81566e8322c3f6c6f9a2277fe0e440fee8d917bd (patch)
tree2c7456cf77548436e97ae8fef5c1f91127e8fd92 /net/ipv4/ip_fragment.c
parent3140c25c82106645a6b1fc469dab7006a1d09fd0 (diff)
[NETNS][FRAGS]: Make the pernet subsystem for fragments.
On namespace start we mainly prepare the ctl variables. When the namespace is stopped we have to kill all the fragments that point to this namespace. The inet_frags_exit_net() handles it. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_fragment.c')
-rw-r--r--net/ipv4/ip_fragment.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c
index 29b4b0972e44..a2e92f9709db 100644
--- a/net/ipv4/ip_fragment.c
+++ b/net/ipv4/ip_fragment.c
@@ -713,9 +713,20 @@ static int ipv4_frags_init_net(struct net *net)
713 return ip4_frags_ctl_register(net); 713 return ip4_frags_ctl_register(net);
714} 714}
715 715
716static void ipv4_frags_exit_net(struct net *net)
717{
718 ip4_frags_ctl_unregister(net);
719 inet_frags_exit_net(&net->ipv4.frags, &ip4_frags);
720}
721
722static struct pernet_operations ip4_frags_ops = {
723 .init = ipv4_frags_init_net,
724 .exit = ipv4_frags_exit_net,
725};
726
716void __init ipfrag_init(void) 727void __init ipfrag_init(void)
717{ 728{
718 ipv4_frags_init_net(&init_net); 729 register_pernet_subsys(&ip4_frags_ops);
719 ip4_frags.hashfn = ip4_hashfn; 730 ip4_frags.hashfn = ip4_hashfn;
720 ip4_frags.constructor = ip4_frag_init; 731 ip4_frags.constructor = ip4_frag_init;
721 ip4_frags.destructor = ip4_frag_free; 732 ip4_frags.destructor = ip4_frag_free;