mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-18 11:54:37 +08:00
bonding: fire NETDEV_RELEASE event only on 0 slaves
Currently, if we set up netconsole over bonding and release a slave, netconsole will stop logging on the whole bonding device. Change the behavior to stop the netconsole only when the last slave is released. Signed-off-by: Veaceslav Falico <vfalico@redhat.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9cb6cb7ed1
commit
80028ea1c0
@ -1964,7 +1964,6 @@ static int __bond_release_one(struct net_device *bond_dev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
block_netpoll_tx();
|
block_netpoll_tx();
|
||||||
call_netdevice_notifiers(NETDEV_RELEASE, bond_dev);
|
|
||||||
write_lock_bh(&bond->lock);
|
write_lock_bh(&bond->lock);
|
||||||
|
|
||||||
slave = bond_get_slave_by_dev(bond, slave_dev);
|
slave = bond_get_slave_by_dev(bond, slave_dev);
|
||||||
@ -2066,8 +2065,10 @@ static int __bond_release_one(struct net_device *bond_dev,
|
|||||||
write_unlock_bh(&bond->lock);
|
write_unlock_bh(&bond->lock);
|
||||||
unblock_netpoll_tx();
|
unblock_netpoll_tx();
|
||||||
|
|
||||||
if (bond->slave_cnt == 0)
|
if (bond->slave_cnt == 0) {
|
||||||
call_netdevice_notifiers(NETDEV_CHANGEADDR, bond->dev);
|
call_netdevice_notifiers(NETDEV_CHANGEADDR, bond->dev);
|
||||||
|
call_netdevice_notifiers(NETDEV_RELEASE, bond->dev);
|
||||||
|
}
|
||||||
|
|
||||||
bond_compute_features(bond);
|
bond_compute_features(bond);
|
||||||
if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
|
if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) &&
|
||||||
|
Loading…
Reference in New Issue
Block a user