netns xfrm: add struct xfrm_state::xs_net
To avoid unnecessary complications with passing netns around. * set once, very early after allocating * once set, never changes For a while create every xfrm_state in init_net. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d62ddc21b6
commit
673c09be45
@ -76,7 +76,7 @@ static struct xfrm_state *ipcomp6_tunnel_create(struct xfrm_state *x)
|
||||
{
|
||||
struct xfrm_state *t = NULL;
|
||||
|
||||
t = xfrm_state_alloc();
|
||||
t = xfrm_state_alloc(&init_net);
|
||||
if (!t)
|
||||
goto out;
|
||||
|
||||
|
Reference in New Issue
Block a user