mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-17 12:08:43 +00:00
bonding: Fix race at module unload
Fixes a race condition in module unload. Without this change, workqueue events may fire while bonding data structures are partially freed but before bond_close() is invoked by unregister_netdevice(). Update version to 3.2.3. Signed-off-by: Jay Vosburgh <fubar@us.ibm.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
6f6652be18
commit
fdaea7a93d
2 changed files with 23 additions and 22 deletions
|
@ -4492,6 +4492,27 @@ static void bond_deinit(struct net_device *bond_dev)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void bond_work_cancel_all(struct bonding *bond)
|
||||||
|
{
|
||||||
|
write_lock_bh(&bond->lock);
|
||||||
|
bond->kill_timers = 1;
|
||||||
|
write_unlock_bh(&bond->lock);
|
||||||
|
|
||||||
|
if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
|
||||||
|
cancel_delayed_work(&bond->mii_work);
|
||||||
|
|
||||||
|
if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
|
||||||
|
cancel_delayed_work(&bond->arp_work);
|
||||||
|
|
||||||
|
if (bond->params.mode == BOND_MODE_ALB &&
|
||||||
|
delayed_work_pending(&bond->alb_work))
|
||||||
|
cancel_delayed_work(&bond->alb_work);
|
||||||
|
|
||||||
|
if (bond->params.mode == BOND_MODE_8023AD &&
|
||||||
|
delayed_work_pending(&bond->ad_work))
|
||||||
|
cancel_delayed_work(&bond->ad_work);
|
||||||
|
}
|
||||||
|
|
||||||
/* Unregister and free all bond devices.
|
/* Unregister and free all bond devices.
|
||||||
* Caller must hold rtnl_lock.
|
* Caller must hold rtnl_lock.
|
||||||
*/
|
*/
|
||||||
|
@ -4502,6 +4523,7 @@ 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);
|
||||||
bond_mc_list_destroy(bond);
|
bond_mc_list_destroy(bond);
|
||||||
/* Release the bonded slaves */
|
/* Release the bonded slaves */
|
||||||
bond_release_all(bond_dev);
|
bond_release_all(bond_dev);
|
||||||
|
@ -4902,27 +4924,6 @@ out_rtnl:
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bond_work_cancel_all(struct bonding *bond)
|
|
||||||
{
|
|
||||||
write_lock_bh(&bond->lock);
|
|
||||||
bond->kill_timers = 1;
|
|
||||||
write_unlock_bh(&bond->lock);
|
|
||||||
|
|
||||||
if (bond->params.miimon && delayed_work_pending(&bond->mii_work))
|
|
||||||
cancel_delayed_work(&bond->mii_work);
|
|
||||||
|
|
||||||
if (bond->params.arp_interval && delayed_work_pending(&bond->arp_work))
|
|
||||||
cancel_delayed_work(&bond->arp_work);
|
|
||||||
|
|
||||||
if (bond->params.mode == BOND_MODE_ALB &&
|
|
||||||
delayed_work_pending(&bond->alb_work))
|
|
||||||
cancel_delayed_work(&bond->alb_work);
|
|
||||||
|
|
||||||
if (bond->params.mode == BOND_MODE_8023AD &&
|
|
||||||
delayed_work_pending(&bond->ad_work))
|
|
||||||
cancel_delayed_work(&bond->ad_work);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int __init bonding_init(void)
|
static int __init bonding_init(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include "bond_3ad.h"
|
#include "bond_3ad.h"
|
||||||
#include "bond_alb.h"
|
#include "bond_alb.h"
|
||||||
|
|
||||||
#define DRV_VERSION "3.2.2"
|
#define DRV_VERSION "3.2.3"
|
||||||
#define DRV_RELDATE "December 6, 2007"
|
#define DRV_RELDATE "December 6, 2007"
|
||||||
#define DRV_NAME "bonding"
|
#define DRV_NAME "bonding"
|
||||||
#define DRV_DESCRIPTION "Ethernet Channel Bonding Driver"
|
#define DRV_DESCRIPTION "Ethernet Channel Bonding Driver"
|
||||||
|
|
Loading…
Add table
Reference in a new issue