NIU: Fix BMAC alternate MAC address indexing.
Bug: #301608
Upstream commit: 3b5bcedeeb755b6e813537fcf4c32f010b490aef BMAC port alternate MAC address index needs to start at 1. Index 0 is used for the main MAC address. Signed-off-by: Matheos Worku <matheos.worku@sun.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Chris Wright <chrisw@sous-sol.org> Signed-off-by: Stefan Bader <stefan.bader@canonical.com> --- drivers/net/niu.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/drivers/net/niu.c b/drivers/net/niu.c index faf87a0..e658194 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c @@ -5148,7 +5148,12 @@ static void niu_set_rx_mode(struct net_device *dev) index++; } } else { - for (i = 0; i < niu_num_alt_addr(np); i++) { + int alt_start; + if (np->flags & NIU_FLAGS_XMAC) + alt_start = 0; + else + alt_start = 1; + for (i = alt_start; i < niu_num_alt_addr(np); i++) { err = niu_enable_alt_mac(np, i, 0); if (err) printk(KERN_WARNING PFX "%s: Error %d " -- 1.5.4.3 --------------020605060804020706030600 Content-Type: text/x-diff; name="0006-NIU-Bump-driver-version-and-release-date.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename*0="0006-NIU-Bump-driver-version-and-release-date.patch" |
| All times are GMT. The time now is 07:27 AM. |
VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.