From: WANG Cong Date: Thu, 2 Mar 2017 20:24:36 +0000 (-0800) Subject: bonding: use ETH_MAX_MTU as max mtu X-Git-Tag: v4.10.5~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aa677aafef5c3976f87243ac598dc56555a57ec5;p=thirdparty%2Fkernel%2Fstable.git bonding: use ETH_MAX_MTU as max mtu [ Upstream commit 31c05415f5b471fd333fe42629788364faea8e0d ] This restores the ability of setting bond device's mtu to 9000. Fixes: 91572088e3fd ("net: use core MTU range checking in core net infra") Reported-by: daznis@gmail.com Reported-by: Brad Campbell Cc: Jarod Wilson Signed-off-by: Cong Wang Signed-off-by: Jay Vosburgh Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 8029dd4912b6f..644d2bf0c4513 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -4185,6 +4185,7 @@ void bond_setup(struct net_device *bond_dev) /* Initialize the device entry points */ ether_setup(bond_dev); + bond_dev->max_mtu = ETH_MAX_MTU; bond_dev->netdev_ops = &bond_netdev_ops; bond_dev->ethtool_ops = &bond_ethtool_ops;