diff options
author | Toshiaki Makita <makita.toshiaki@lab.ntt.co.jp> | 2015-03-27 05:31:14 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-03-29 20:33:24 (GMT) |
commit | 4847f04982c360ffb233a10e8ef79a16e8be5c28 (patch) | |
tree | e1d9f87446ba1e655812930340683db25ee01b60 /drivers/net/bonding | |
parent | e38f30256b36700aa63aa709dc091bf6eb69c257 (diff) | |
download | linux-4847f04982c360ffb233a10e8ef79a16e8be5c28.tar.xz |
bonding: Don't segment multiple tagged packets on bonding device
Bonding devices don't need to segment multiple tagged packets since their
slaves can segment them.
Signed-off-by: Toshiaki Makita <makita.toshiaki@lab.ntt.co.jp>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-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 c026ce9..7b4684c 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -4038,6 +4038,7 @@ static const struct net_device_ops bond_netdev_ops = { .ndo_fix_features = bond_fix_features, .ndo_bridge_setlink = ndo_dflt_netdev_switch_port_bridge_setlink, .ndo_bridge_dellink = ndo_dflt_netdev_switch_port_bridge_dellink, + .ndo_features_check = passthru_features_check, }; static const struct device_type bond_type = { |