[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20070822.092757.-432817388.kouish@swc.toshiba.co.jp>
Date: Wed, 22 Aug 2007 09:27:57 +0900 (JST)
From: Ishizaki Kou <kou.ishizaki@...hiba.co.jp>
To: Linas Vepstas <linas@...tin.ibm.com>
Cc: netdev@...r.kernel.org, cbe-oss-dev@...abs.org, arnd@...db.de
Subject: [PATCH] spidernet: enable poll() before registering interrupts
We must not call netif_poll_enable after enabling interrupts,
because an interrupt might come in and set the __LINK_STATE_RX_SCHED
bit before we get to clear that bit again. If that happens,
the next call to the ->poll() function will oops.
Signed-off-by: Arnd Bergmann <arnd.bergmann@...ibm.com>
Signed-off-by: Kou Ishizaki <kou.ishizaki@...hiba.co.jp>
---
I refreshed Arnd-san's patch.
Index: linux-powerpc-git/drivers/net/spider_net.c
===================================================================
--- linux-powerpc-git.orig/drivers/net/spider_net.c 2007-08-21 16:58:44.000000000 +0900
+++ linux-powerpc-git/drivers/net/spider_net.c 2007-08-21 17:11:07.000000000 +0900
@@ -2030,6 +2030,7 @@ spider_net_open(struct net_device *netde
/* further enhancement: setup hw vlan, if needed */
result = -EBUSY;
+ netif_poll_enable(netdev);
if (request_irq(netdev->irq, spider_net_interrupt,
IRQF_SHARED, netdev->name, netdev))
goto register_int_failed;
@@ -2038,13 +2039,13 @@ spider_net_open(struct net_device *netde
netif_start_queue(netdev);
netif_carrier_on(netdev);
- netif_poll_enable(netdev);
spider_net_enable_interrupts(card);
return 0;
register_int_failed:
+ netif_poll_disable(netdev);
spider_net_free_rx_chain_contents(card);
alloc_skbs_failed:
spider_net_free_chain(card, &card->rx_chain);
-
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