[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <87zlsldit9.fsf@macbook.be.48ers.dk>
Date: Wed, 26 Mar 2008 08:51:30 +0100
From: Peter Korsgaard <jacmet@...site.dk>
To: Jeff Garzik <jeff@...zik.org>
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH] dm9601: Fix multicast hash table handling
>>>>> "Jeff" == Jeff Garzik <jeff@...zik.org> writes:
Jeff> I take that back... this breaks the build: 'mlist' not defined
Argh, it seems like I sent the wrong patch - Sorry about that :/
It was ofcause meant to be mc_list instead. I would like to get this
patch in 2.6.25 if possible.
>From 7ac36d3b2f78a31c6dc224968f9b19a0d6c71688 Mon Sep 17 00:00:00 2001
From: Peter Korsgaard <jacmet@...site.dk>
Date: Wed, 26 Mar 2008 08:48:52 +0100
Subject: [PATCH] dm9601: Fix multicast hash table handling
The loop forgot to walk the net->mc_list list, so only the first
multicast address was programmed into the hash table.
---
drivers/net/usb/dm9601.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/usb/dm9601.c b/drivers/net/usb/dm9601.c
index 0343b00..01660f6 100644
--- a/drivers/net/usb/dm9601.c
+++ b/drivers/net/usb/dm9601.c
@@ -354,7 +354,7 @@ static void dm9601_set_multicast(struct net_device *net)
struct dev_mc_list *mc_list = net->mc_list;
int i;
- for (i = 0; i < net->mc_count; i++) {
+ for (i = 0; i < net->mc_count; i++, mc_list = mc_list->next) {
u32 crc = ether_crc(ETH_ALEN, mc_list->dmi_addr) >> 26;
hashes[crc >> 3] |= 1 << (crc & 0x7);
}
--
1.5.4.4
--
Bye, Peter Korsgaard
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists