From: Haishuang Yan Date: Thu, 7 Sep 2017 06:08:35 +0000 (+0800) Subject: ip6_tunnel: fix setting hop_limit value for ipv6 tunnel X-Git-Tag: v4.14-rc1~82^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=18e1173d5f3615c8c2680853ba87830ad8a0febc;p=platform%2Fkernel%2Flinux-rpi.git ip6_tunnel: fix setting hop_limit value for ipv6 tunnel Similar to vxlan/geneve tunnel, if hop_limit is zero, it should fall back to ip6_dst_hoplimt(). Signed-off-by: Haishuang Yan Signed-off-by: David S. Miller --- diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c index 3a0ba2a..10a693a 100644 --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c @@ -1184,6 +1184,7 @@ route_lookup: init_tel_txopt(&opt, encap_limit); ipv6_push_frag_opts(skb, &opt.ops, &proto); } + hop_limit = hop_limit ? : ip6_dst_hoplimit(dst); /* Calculate max headroom for all the headers and adjust * needed_headroom if necessary.