bond: Simplify bond device destruction
Manually inline the code from bond_deinit to bond_uninit. bond_uninit is the only caller and it is short. Move the call of bond_release_all from the netdev notifier into bond_uninit. The call site is effectively the same and performing the call explicitly allows all the paths for destroying a bonding device to behave the same way. Signed-off-by: Eric W. Biederman <ebiederm@aristanetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
30c15ba993
commit
c67dfb299e
@@ -227,7 +227,7 @@ struct bond_parm_tbl ad_select_tbl[] = {
|
|||||||
|
|
||||||
static void bond_send_gratuitous_arp(struct bonding *bond);
|
static void bond_send_gratuitous_arp(struct bonding *bond);
|
||||||
static int bond_init(struct net_device *bond_dev);
|
static int bond_init(struct net_device *bond_dev);
|
||||||
static void bond_deinit(struct net_device *bond_dev);
|
static void bond_uninit(struct net_device *bond_dev);
|
||||||
|
|
||||||
/*---------------------------- General routines -----------------------------*/
|
/*---------------------------- General routines -----------------------------*/
|
||||||
|
|
||||||
@@ -2002,24 +2002,6 @@ int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
|
|||||||
return 0; /* deletion OK */
|
return 0; /* deletion OK */
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Destroy a bonding device.
|
|
||||||
* Must be under rtnl_lock when this function is called.
|
|
||||||
*/
|
|
||||||
static void bond_uninit(struct net_device *bond_dev)
|
|
||||||
{
|
|
||||||
struct bonding *bond = netdev_priv(bond_dev);
|
|
||||||
|
|
||||||
bond_deinit(bond_dev);
|
|
||||||
|
|
||||||
if (bond->wq)
|
|
||||||
destroy_workqueue(bond->wq);
|
|
||||||
|
|
||||||
netif_addr_lock_bh(bond_dev);
|
|
||||||
bond_mc_list_destroy(bond);
|
|
||||||
netif_addr_unlock_bh(bond_dev);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* First release a slave and than destroy the bond if no more slaves are left.
|
* First release a slave and than destroy the bond if no more slaves are left.
|
||||||
* Must be under rtnl_lock when this function is called.
|
* Must be under rtnl_lock when this function is called.
|
||||||
@@ -3467,9 +3449,6 @@ static int bond_master_netdev_event(unsigned long event,
|
|||||||
switch (event) {
|
switch (event) {
|
||||||
case NETDEV_CHANGENAME:
|
case NETDEV_CHANGENAME:
|
||||||
return bond_event_changename(event_bond);
|
return bond_event_changename(event_bond);
|
||||||
case NETDEV_UNREGISTER:
|
|
||||||
bond_release_all(event_bond->dev);
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -4608,18 +4587,29 @@ static void bond_work_cancel_all(struct bonding *bond)
|
|||||||
cancel_delayed_work(&bond->ad_work);
|
cancel_delayed_work(&bond->ad_work);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* De-initialize device specific data.
|
/*
|
||||||
* Caller must hold rtnl_lock.
|
* Destroy a bonding device.
|
||||||
|
* Must be under rtnl_lock when this function is called.
|
||||||
*/
|
*/
|
||||||
static void bond_deinit(struct net_device *bond_dev)
|
static void bond_uninit(struct net_device *bond_dev)
|
||||||
{
|
{
|
||||||
struct bonding *bond = netdev_priv(bond_dev);
|
struct bonding *bond = netdev_priv(bond_dev);
|
||||||
|
|
||||||
|
/* Release the bonded slaves */
|
||||||
|
bond_release_all(bond_dev);
|
||||||
|
|
||||||
list_del(&bond->bond_list);
|
list_del(&bond->bond_list);
|
||||||
|
|
||||||
bond_work_cancel_all(bond);
|
bond_work_cancel_all(bond);
|
||||||
|
|
||||||
bond_remove_proc_entry(bond);
|
bond_remove_proc_entry(bond);
|
||||||
|
|
||||||
|
if (bond->wq)
|
||||||
|
destroy_workqueue(bond->wq);
|
||||||
|
|
||||||
|
netif_addr_lock_bh(bond_dev);
|
||||||
|
bond_mc_list_destroy(bond);
|
||||||
|
netif_addr_unlock_bh(bond_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Unregister and free all bond devices.
|
/* Unregister and free all bond devices.
|
||||||
@@ -4632,9 +4622,6 @@ static void bond_free_all(void)
|
|||||||
list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list) {
|
list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list) {
|
||||||
struct net_device *bond_dev = bond->dev;
|
struct net_device *bond_dev = bond->dev;
|
||||||
|
|
||||||
bond_work_cancel_all(bond);
|
|
||||||
/* Release the bonded slaves */
|
|
||||||
bond_release_all(bond_dev);
|
|
||||||
unregister_netdevice(bond_dev);
|
unregister_netdevice(bond_dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user