summaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorXin Long <lucien.xin@gmail.com>2020-07-06 20:01:36 +0800
committerSteffen Klassert <steffen.klassert@secunet.com>2020-07-09 12:55:37 +0200
commitd5a7a5057387d79b91a6e2fd78a76ccd53f91e6c (patch)
tree8efa24b70305b5b58156875c3bc8882b5b60d32c /net/ipv6
parent2ab110cbb0c0cb05c64f37f42b78f5bc11699b0e (diff)
downloadlinux-d5a7a5057387d79b91a6e2fd78a76ccd53f91e6c.tar.gz
linux-d5a7a5057387d79b91a6e2fd78a76ccd53f91e6c.tar.xz
ipcomp: assign if_id to child tunnel from parent tunnel
The child tunnel if_id will be used for xfrm interface's lookup when processing the IP(6)IP(6) packets in the next patches. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/ipcomp6.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c
index 99668bfebd85..daef890460b7 100644
--- a/net/ipv6/ipcomp6.c
+++ b/net/ipv6/ipcomp6.c
@@ -91,6 +91,7 @@ static struct xfrm_state *ipcomp6_tunnel_create(struct xfrm_state *x)
t->props.mode = x->props.mode;
memcpy(t->props.saddr.a6, x->props.saddr.a6, sizeof(struct in6_addr));
memcpy(&t->mark, &x->mark, sizeof(t->mark));
+ t->if_id = x->if_id;
if (xfrm_init_state(t))
goto error;