Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1264906

Re: [PATCH net] net/qlcnic: fix mac address restore in bond mode 5/6

From David Miller <davem@davemloft.net>
Newsgroups linux.kernel
Subject Re: [PATCH net] net/qlcnic: fix mac address restore in bond mode 5/6
Date 2015-11-07 19:20 +0100
Message-ID <qsgfM-5MQ-9@gated-at.bofh.it> (permalink)
References <qrQbD-5DG-7@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


From: Jarod Wilson <jarod@redhat.com>
Date: Fri,  6 Nov 2015 09:25:31 -0500

> The bonding driver saves a copy of slaves' original mac address and then
> assigns whatever mac as needed to the slave, depending on mode. In at
> least modes 5 and 6 (balance-tlb, balance-alb), it often ends up being the
> mac address of another slave. On release from the bond, the original mac
> address is supposed to get restored via a dev_set_mac_address() call in
> the bonding driver's __bond_release_one() function, which calls the
> slave's ndo_set_mac_address function, which for qlcnic, is
> qlcnic_set_mac().
> 
> Now, this function tries to be somewhat intelligent and exit early if
> you're trying to set the mac address to the same thing that is already
> set. The problem here is that adapter->mac_addr isn't in sync with
> netdev->dev_addr. The qlcnic driver still has the original mac stored in
> adapter->mac_addr, while the bonding driver has updated netdev->dev_addr,
> so qlcnic thinks we're trying to set the same address it already has.
> 
> I think the way to go here, since the function updates both netdev and
> adapter's stored mac addresses, is to check if either of them doesn't
> match the newly requested mac. Simply checking netdev's value only could
> result in a similar mismatch and non-update, so look at both.
> 
> CC: Dept-GELinuxNICDev@qlogic.com
> CC: netdev@vger.kernel.org
> CC: Manish Chopra <manish.chopra@qlogic.com>
> Signed-off-by: Jarod Wilson <jarod@redhat.com>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH net] net/qlcnic: fix mac address restore in bond mode 5/6 Jarod Wilson <jarod@redhat.com> - 2015-11-06 15:30 +0100
  Re: [PATCH net] net/qlcnic: fix mac address restore in bond mode  5/6 Jarod Wilson <jarod@redhat.com> - 2015-11-06 17:30 +0100
  Re: [PATCH net] net/qlcnic: fix mac address restore in bond mode  5/6 David Miller <davem@davemloft.net> - 2015-11-07 19:20 +0100

csiph-web