diff options
author | WANG Cong <xiyou.wangcong@gmail.com> | 2017-03-02 15:24:36 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-02 17:43:20 -0500 |
commit | 31c05415f5b471fd333fe42629788364faea8e0d (patch) | |
tree | 049c1d963fba8573472b646ce9ce65dcc8fb6ec4 | |
parent | 152669bd3cd2407d6f556009b95ee249c0c1a462 (diff) |
bonding: use ETH_MAX_MTU as max mtu
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 <lists2009@fnarfbargle.com>
Cc: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: Jay Vosburgh <jay.vosburgh@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/bonding/bond_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 6321f12630c8..8a4ba8b88e52 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -4179,6 +4179,7 @@ void bond_setup(struct net_device *bond_dev) | |||
4179 | 4179 | ||
4180 | /* Initialize the device entry points */ | 4180 | /* Initialize the device entry points */ |
4181 | ether_setup(bond_dev); | 4181 | ether_setup(bond_dev); |
4182 | bond_dev->max_mtu = ETH_MAX_MTU; | ||
4182 | bond_dev->netdev_ops = &bond_netdev_ops; | 4183 | bond_dev->netdev_ops = &bond_netdev_ops; |
4183 | bond_dev->ethtool_ops = &bond_ethtool_ops; | 4184 | bond_dev->ethtool_ops = &bond_ethtool_ops; |
4184 | 4185 | ||