netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] r8169: Fix irq masking in rtl8169_interrupt()
@ 2009-03-17 19:34 Karsten Wiese
  2009-03-17 22:06 ` Francois Romieu
  0 siblings, 1 reply; 17+ messages in thread
From: Karsten Wiese @ 2009-03-17 19:34 UTC (permalink / raw)
  To: netdev; +Cc: Francois Romieu, Rafael Wysocki


Only adjust the NAPI bits of the interruptmask, if netif_rx_schedule_prep()
returns true.
Without this, I see interrupt storms here using 2.6.29-rcx and 2.6.27.19 and
device needed rmmod r8169 + modprobe r8169 to start working.

Signed-off-by: Karsten Wiese <fzu@wemgehoertderstaat.de>
---
 drivers/net/r8169.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c
index b347340..0c943ba 100644
--- a/drivers/net/r8169.c
+++ b/drivers/net/r8169.c
@@ -3708,12 +3708,11 @@ static irqreturn_t rtl8169_interrupt(int irq, void *dev_instance)
 		rtl8169_check_link_status(dev, tp, ioaddr);
 
 	if (status & tp->napi_event) {
-		RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
-		tp->intr_mask = ~tp->napi_event;
-
-		if (likely(netif_rx_schedule_prep(&tp->napi)))
+		if (likely(netif_rx_schedule_prep(&tp->napi))) {
+			RTL_W16(IntrMask, tp->intr_event & ~tp->napi_event);
+			tp->intr_mask = ~tp->napi_event;
 			__netif_rx_schedule(&tp->napi);
-		else if (netif_msg_intr(tp)) {
+		} else if (netif_msg_intr(tp)) {
 			printk(KERN_INFO "%s: interrupt %04x in poll\n",
 			       dev->name, status);
 		}
-- 
1.6.0.6


^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2009-03-24 20:14 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200903171937.53401.fzu@wemgehoertderstaat.de>
2009-03-17 20:09 ` [PATCH] r8169: Fix irq masking in rtl8169_interrupt() Jeff Garzik
2009-03-17 19:34 Karsten Wiese
2009-03-17 22:06 ` Francois Romieu
2009-03-18  1:56   ` Karsten Wiese
2009-03-18  6:40     ` Francois Romieu
2009-03-18 11:59       ` Karsten Wiese
2009-03-18 22:36         ` Francois Romieu
2009-03-19  6:35           ` David Miller
2009-03-19 10:58           ` Karsten Wiese
2009-03-19 22:23             ` Francois Romieu
2009-03-20  1:40               ` Karsten Wiese
2009-03-22 21:16                 ` Francois Romieu
2009-03-22 23:53                   ` Karsten Wiese
2009-03-23 22:42                     ` Francois Romieu
2009-03-24  0:38                       ` Karsten Wiese
2009-03-24 13:54                         ` Karsten Wiese
2009-03-24 20:18                           ` Francois Romieu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).