From: Amir Noam <amir.noam@intel.com>
To: Jay Vosburgh <fubar@us.ibm.com>, jgarzik@pobox.com
Cc: bonding-devel@lists.sourceforge.net, netdev@oss.sgi.com
Subject: [PATCH 2/3][bonding 2.4] Releasing the original active slave causes mac address duplication
Date: Thu, 25 Dec 2003 17:04:21 +0200 [thread overview]
Message-ID: <200312251704.22741.amir.noam@intel.com> (raw)
When releasing the active slave in TLB/ALB modes,
bond_alb_deinit_slave() must be called before trying to select a new
active slave.
diff -Nuarp a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
--- a/drivers/net/bonding/bond_main.c Thu Dec 25 16:09:32 2003
+++ b/drivers/net/bonding/bond_main.c Thu Dec 25 16:09:33 2003
@@ -1557,7 +1557,7 @@ err_free:
static int bond_release(struct net_device *bond_dev, struct net_device *slave_dev)
{
struct bonding *bond = bond_dev->priv;
- struct slave *slave;
+ struct slave *slave, *oldcurrent;
struct sockaddr addr;
int mac_addr_differ;
@@ -1617,6 +1617,8 @@ static int bond_release(struct net_devic
? "active" : "backup",
slave_dev->name);
+ oldcurrent = bond->curr_active_slave;
+
bond->current_arp_slave = NULL;
/* release the slave from its bond */
@@ -1626,27 +1628,31 @@ static int bond_release(struct net_devic
bond->primary_slave = NULL;
}
- if (bond->curr_active_slave == slave) {
+ if (oldcurrent == slave) {
bond_change_active_slave(bond, NULL);
- bond_select_active_slave(bond);
- }
-
- if (!bond->curr_active_slave) {
- printk(KERN_INFO DRV_NAME
- ": %s: now running without any active "
- "interface !\n",
- bond_dev->name);
}
- if ((bond_mode == BOND_MODE_TLB) ||
- (bond_mode == BOND_MODE_ALB)) {
- /* must be called only after the slave has been
+ if ((bond->params.mode == BOND_MODE_TLB) ||
+ (bond->params.mode == BOND_MODE_ALB)) {
+ /* Must be called only after the slave has been
* detached from the list and the curr_active_slave
- * has been replaced (if our_slave == old_current)
+ * has been cleared (if our_slave == old_current),
+ * but before a new active slave is selected.
*/
bond_alb_deinit_slave(bond, slave);
}
+ if (oldcurrent == slave) {
+ bond_select_active_slave(bond);
+
+ if (!bond->curr_active_slave) {
+ printk(KERN_INFO DRV_NAME
+ ": %s: now running without any active "
+ "interface !\n",
+ bond_dev->name);
+ }
+ }
+
write_unlock_bh(&bond->lock);
/* If the mode USES_PRIMARY, then we should only remove its
reply other threads:[~2003-12-25 15:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200312251704.22741.amir.noam@intel.com \
--to=amir.noam@intel.com \
--cc=bonding-devel@lists.sourceforge.net \
--cc=fubar@us.ibm.com \
--cc=jgarzik@pobox.com \
--cc=netdev@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.