summaryrefslogtreecommitdiff
path: root/drivers/net/tlan.c
diff options
context:
space:
mode:
authorJames Harper <james.harper@bendigoit.com.au>2005-05-05 22:14:18 (GMT)
committerJeff Garzik <jgarzik@pobox.com>2005-05-16 02:47:56 (GMT)
commit562faf469f35bf63c0b021550811280c81bdc52e (patch)
treea97720dac2a2fcd94407c825703ecab14e617a88 /drivers/net/tlan.c
parent15efa9bb2d4da7cd9feb1c67fcf3d9e0e1bd00c6 (diff)
downloadlinux-562faf469f35bf63c0b021550811280c81bdc52e.tar.xz
[PATCH] fix PROMISC/bridging in TLAN driver
This has been a problem for me for ages. When using bridging, the driver is switched into promiscuous mode before the link init is complete. The init complete routine then resets the promisc bit on the card so the kernel still thinks the card is in promiscuous mode but the card isn't. doh. I think this bug only shows up in bridging when the bridge is started at boot time (or something else that sets promisc at the same time the card was started). If promisc is enabled later it works. Here's a trivial (and hopefully correct) patch that works for me. It just calls the promisc/multicast setup routine after init. Cc: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Andrew Morton <akpm@osdl.org>
Diffstat (limited to 'drivers/net/tlan.c')
-rw-r--r--drivers/net/tlan.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/tlan.c b/drivers/net/tlan.c
index f0851c4..9680a30 100644
--- a/drivers/net/tlan.c
+++ b/drivers/net/tlan.c
@@ -2392,6 +2392,7 @@ TLan_FinishReset( struct net_device *dev )
TLan_SetTimer( dev, (10*HZ), TLAN_TIMER_FINISH_RESET );
return;
}
+ TLan_SetMulticastList(dev);
} /* TLan_FinishReset */