From: Greg Kroah-Hartman Date: Wed, 30 May 2018 18:44:08 +0000 (+0200) Subject: Revert "vti4: Don't override MTU passed on link creation via IFLA_MTU" X-Git-Tag: v4.14.47~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e496be2038a100fc53627238fe120dc4c948719;p=platform%2Fkernel%2Flinux-rpi.git Revert "vti4: Don't override MTU passed on link creation via IFLA_MTU" This reverts commit 5815901c29c2936d7acbed2683d5807b4ae53ede which is 03080e5ec727 ("vti4: Don't override MTU passed on link creation via IFLA_MTU") upstream as it causes test failures. This commit should not have been backported to anything older than 4.16, despite what the changelog said as the mtu must be set in older kernels, unlike is needed in 4.16 and newer. Thanks to Alistair Strachan for the debugging help figuring this out, and for 'git bisect' for making my life a whole lot easier. Cc: Alistair Strachan Cc: Stefano Brivio Cc: Sabrina Dubroca Cc: Steffen Klassert Cc: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/ipv4/ip_vti.c b/net/ipv4/ip_vti.c index 5c5699c..00d4371 100644 --- a/net/ipv4/ip_vti.c +++ b/net/ipv4/ip_vti.c @@ -396,6 +396,7 @@ static int vti_tunnel_init(struct net_device *dev) memcpy(dev->dev_addr, &iph->saddr, 4); memcpy(dev->broadcast, &iph->daddr, 4); + dev->mtu = ETH_DATA_LEN; dev->flags = IFF_NOARP; dev->addr_len = 4; dev->features |= NETIF_F_LLTX;