aboutsummaryrefslogtreecommitdiffstats
path: root/net/xfrm/xfrm_state.c
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2008-11-25 20:57:44 -0500
committerDavid S. Miller <davem@davemloft.net>2008-11-25 20:57:44 -0500
commit7c2776ee21a60e0d370538bd08b9ed82979f6e3a (patch)
treec8b9757f6989216c00b5ca9e09ee074662fff586 /net/xfrm/xfrm_state.c
parentfbda33b2b85941c1ae3a0d89522dec5c1b1bd98c (diff)
netns xfrm: flush SA/SPDs on netns stop
SA/SPD doesn't pin netns (and it shouldn't), so get rid of them by hand. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm/xfrm_state.c')
-rw-r--r--net/xfrm/xfrm_state.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
index d594b5af5f6b..662e47b0bcc3 100644
--- a/net/xfrm/xfrm_state.c
+++ b/net/xfrm/xfrm_state.c
@@ -2114,8 +2114,16 @@ out_bydst:
2114 2114
2115void xfrm_state_fini(struct net *net) 2115void xfrm_state_fini(struct net *net)
2116{ 2116{
2117 struct xfrm_audit audit_info;
2117 unsigned int sz; 2118 unsigned int sz;
2118 2119
2120 flush_work(&net->xfrm.state_hash_work);
2121 audit_info.loginuid = -1;
2122 audit_info.sessionid = -1;
2123 audit_info.secid = 0;
2124 xfrm_state_flush(net, IPSEC_PROTO_ANY, &audit_info);
2125 flush_work(&net->xfrm.state_gc_work);
2126
2119 WARN_ON(!list_empty(&net->xfrm.state_all)); 2127 WARN_ON(!list_empty(&net->xfrm.state_all));
2120 2128
2121 sz = (net->xfrm.state_hmask + 1) * sizeof(struct hlist_head); 2129 sz = (net->xfrm.state_hmask + 1) * sizeof(struct hlist_head);