aboutsummaryrefslogtreecommitdiffstats
path: root/net/xfrm/xfrm_user.c
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2008-11-25 20:21:45 -0500
committerDavid S. Miller <davem@davemloft.net>2008-11-25 20:21:45 -0500
commit0331b1f383e1fa4049f8e75cafeea8f006171c64 (patch)
tree69409ab7c17e1527ed063bb4f2eda440e2cb4ea2 /net/xfrm/xfrm_user.c
parent50a30657fd7ee77a94a6bf0ad86eba7c37c3032e (diff)
netns xfrm: add struct xfrm_policy::xp_net
Again, to avoid complications with passing netns when not necessary. Again, ->xp_net is set-once field, once set it never changes. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm/xfrm_user.c')
-rw-r--r--net/xfrm/xfrm_user.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c
index 65cdaa5c2280..765c01e784e9 100644
--- a/net/xfrm/xfrm_user.c
+++ b/net/xfrm/xfrm_user.c
@@ -1080,7 +1080,7 @@ static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_i
1080 1080
1081static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp) 1081static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
1082{ 1082{
1083 struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL); 1083 struct xfrm_policy *xp = xfrm_policy_alloc(&init_net, GFP_KERNEL);
1084 int err; 1084 int err;
1085 1085
1086 if (!xp) { 1086 if (!xp) {
@@ -2291,7 +2291,7 @@ static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
2291 if (p->dir > XFRM_POLICY_OUT) 2291 if (p->dir > XFRM_POLICY_OUT)
2292 return NULL; 2292 return NULL;
2293 2293
2294 xp = xfrm_policy_alloc(GFP_KERNEL); 2294 xp = xfrm_policy_alloc(&init_net, GFP_KERNEL);
2295 if (xp == NULL) { 2295 if (xp == NULL) {
2296 *dir = -ENOBUFS; 2296 *dir = -ENOBUFS;
2297 return NULL; 2297 return NULL;