diff options
Diffstat (limited to 'net/ipv4/ip_tunnel.c')
| -rw-r--r-- | net/ipv4/ip_tunnel.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/net/ipv4/ip_tunnel.c b/net/ipv4/ip_tunnel.c index fe6fee728ce4..5ddb1cb52bd4 100644 --- a/net/ipv4/ip_tunnel.c +++ b/net/ipv4/ip_tunnel.c @@ -349,8 +349,8 @@ static int ip_tunnel_bind_dev(struct net_device *dev)  	dev->needed_headroom = t_hlen + hlen;  	mtu -= (dev->hard_header_len + t_hlen); -	if (mtu < 68) -		mtu = 68; +	if (mtu < IPV4_MIN_MTU) +		mtu = IPV4_MIN_MTU;  	return mtu;  } |