[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20061130163531.GB8772@gospo.rdu.redhat.com>
Date: Thu, 30 Nov 2006 11:35:32 -0500
From: Andy Gospodarek <andy@...yhouse.net>
To: netdev@...r.kernel.org, shemminger@...l.org
Subject: [PATCH] skge: restore device multicast membership after link down/up
Yukon hardware will lose multicast membership data and promiscuous mode
information if a link is disconnected and reconnected without taking the
interface down. A call to yukon_reset in yukon_link_down will clear the
hardware's multicast list, so it needs to be added back on link_up.
It does not appear that Genesis hardware needs a similar patch is needed
since it does not seem to clear multicast membership when taking the
link down.
Signed-off-by: Andy Gospodarek <andy@...yhouse.net>
---
skge.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/net/skge.c b/drivers/net/skge.c
index 3f1b72e..c02e1f1 100644
--- a/drivers/net/skge.c
+++ b/drivers/net/skge.c
@@ -1922,6 +1922,10 @@ static void yukon_link_up(struct skge_po
gma_write16(hw, port, GM_GP_CTRL, reg);
gm_phy_write(hw, port, PHY_MARV_INT_MASK, PHY_M_IS_DEF_MSK);
+
+ /* reset multicast list */
+ yukon_set_multicast(skge->netdev);
+
skge_link_up(skge);
}
-
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