diff options
author | jamal <hadi@cyberus.ca> | 2006-09-23 00:54:37 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-09-25 20:08:09 -0400 |
commit | 70298705bb29fb7982b85089adf17cd37b94baa7 (patch) | |
tree | f0522fcc50991fdc295d6f3f8f1b737c9146ccfa | |
parent | 0b680e753724d31a9c45f059d1aad29df54584a1 (diff) |
[PATCH] bonding: Don't release slaves when master is admin down
When a bonding netdevice is admin-ed down it loses the slaves
attributes (set via ifenslave). This is not consistent with other
behavior of netdevices (example a qdisc attached to a netdevice doesnt
disappear or an attached IP address etc).
The included patch fixes this. Ive tested by ifenslaving, downing the
bond, checking /proc and making sure it still has the slaves, up-ing the
bond and making sure things continue to work.
Jay/Bonding folks if you are ok with it, just ACK it or include it in
your tree etc. Otherwise we can discuss.
Acked-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r-- | drivers/net/bonding/bond_main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 9e5a533a1622..bafe62f7c9b7 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -3430,7 +3430,6 @@ static int bond_close(struct net_device *bond_dev) | |||
3430 | 3430 | ||
3431 | write_lock_bh(&bond->lock); | 3431 | write_lock_bh(&bond->lock); |
3432 | 3432 | ||
3433 | bond_mc_list_destroy(bond); | ||
3434 | 3433 | ||
3435 | /* signal timers not to re-arm */ | 3434 | /* signal timers not to re-arm */ |
3436 | bond->kill_timers = 1; | 3435 | bond->kill_timers = 1; |
@@ -3461,8 +3460,6 @@ static int bond_close(struct net_device *bond_dev) | |||
3461 | break; | 3460 | break; |
3462 | } | 3461 | } |
3463 | 3462 | ||
3464 | /* Release the bonded slaves */ | ||
3465 | bond_release_all(bond_dev); | ||
3466 | 3463 | ||
3467 | if ((bond->params.mode == BOND_MODE_TLB) || | 3464 | if ((bond->params.mode == BOND_MODE_TLB) || |
3468 | (bond->params.mode == BOND_MODE_ALB)) { | 3465 | (bond->params.mode == BOND_MODE_ALB)) { |
@@ -4248,6 +4245,9 @@ static void bond_free_all(void) | |||
4248 | list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list) { | 4245 | list_for_each_entry_safe(bond, nxt, &bond_dev_list, bond_list) { |
4249 | struct net_device *bond_dev = bond->dev; | 4246 | struct net_device *bond_dev = bond->dev; |
4250 | 4247 | ||
4248 | bond_mc_list_destroy(bond); | ||
4249 | /* Release the bonded slaves */ | ||
4250 | bond_release_all(bond_dev); | ||
4251 | unregister_netdevice(bond_dev); | 4251 | unregister_netdevice(bond_dev); |
4252 | bond_deinit(bond_dev); | 4252 | bond_deinit(bond_dev); |
4253 | } | 4253 | } |