aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2019-03-29 21:16:23 +0100
committerSteffen Klassert <steffen.klassert@secunet.com>2019-04-08 09:14:12 +0200
commitb45714b164cac71f503ad73654b3c880cb9f2590 (patch)
tree897135e342a250db8c8b978d132b6778a98d917a /net/ipv4
parentxfrm: place af number into xfrm_mode struct (diff)
downloadlinux-dev-b45714b164cac71f503ad73654b3c880cb9f2590.tar.xz
linux-dev-b45714b164cac71f503ad73654b3c880cb9f2590.zip
xfrm: prefer family stored in xfrm_mode struct
Now that we have the family available directly in the xfrm_mode struct, we can use that and avoid one extra dereference. Signed-off-by: Florian Westphal <fw@strlen.de> Reviewed-by: Sabrina Dubroca <sd@queasysnail.net> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/ip_vti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_vti.c b/net/ipv4/ip_vti.c
index a8474799fb79..3f3f6d6be318 100644
--- a/net/ipv4/ip_vti.c
+++ b/net/ipv4/ip_vti.c
@@ -137,7 +137,7 @@ static int vti_rcv_cb(struct sk_buff *skb, int err)
}
}
- family = inner_mode->afinfo->family;
+ family = inner_mode->family;
skb->mark = be32_to_cpu(tunnel->parms.i_key);
ret = xfrm_policy_check(NULL, XFRM_POLICY_IN, skb, family);