[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100205165545.28832c53@marrow.netinsight.se>
Date: Fri, 5 Feb 2010 16:55:45 +0100
From: Simon Kagstrom <simon.kagstrom@...insight.net>
To: netdev@...r.kernel.org, davem@...emloft.net
Cc: davej@...hat.com, ben@...adent.org.uk
Subject: [PATCH 3/3] via-velocity: Fix races on shared interrupts
This patch fixes two potential races in the velocity driver:
* Move the ACK and error handler to the interrupt handler. This fixes a
potential race with shared interrupts when the other device interrupts
before the NAPI poll handler has finished. As the velocity driver hasn't
acked it's own interrupt, it will then steal the interrupt from the
other device.
* Use spin_trylock in the interrupt handler. To avoid having the
interrupt off for long periods of time, velocity_poll uses non-irqsave
spinlocks. In the current code, the interrupt handler will deadlock if
e.g., the NAPI poll handler is executing when an interrupt (for another
device) comes in since it tries to take the already held lock.
Signed-off-by: Simon Kagstrom <simon.kagstrom@...insight.net>
Signed-off-by: Anders Grafstrom <anders.grafstrom@...insight.net>
---
drivers/net/via-velocity.c | 26 +++++++++++++++++---------
1 files changed, 17 insertions(+), 9 deletions(-)
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c
index 5e213f7..6882e7c 100644
--- a/drivers/net/via-velocity.c
+++ b/drivers/net/via-velocity.c
@@ -2148,16 +2148,8 @@ static int velocity_poll(struct napi_struct *napi, int budget)
struct velocity_info *vptr = container_of(napi,
struct velocity_info, napi);
unsigned int rx_done;
- u32 isr_status;
spin_lock(&vptr->lock);
- isr_status = mac_read_isr(vptr->mac_regs);
-
- /* Ack the interrupt */
- mac_write_isr(vptr->mac_regs, isr_status);
- if (isr_status & (~(ISR_PRXI | ISR_PPRXI | ISR_PTXI | ISR_PPTXI)))
- velocity_error(vptr, isr_status);
-
/*
* Do rx and tx twice for performance (taken from the VIA
* out-of-tree driver).
@@ -2194,7 +2186,16 @@ static irqreturn_t velocity_intr(int irq, void *dev_instance)
struct velocity_info *vptr = netdev_priv(dev);
u32 isr_status;
- spin_lock(&vptr->lock);
+ /* Check if the lock is taken, and if so ignore the interrupt. This
+ * can happen with shared interrupts, where the other device can
+ * interrupt during velocity_poll (where the lock is held).
+ *
+ * With spinlock debugging active on a uniprocessor, this will give
+ * a warning which can safely be ignored.
+ */
+ if (!spin_trylock(&vptr->lock))
+ return IRQ_NONE;
+
isr_status = mac_read_isr(vptr->mac_regs);
/* Not us ? */
@@ -2203,10 +2204,17 @@ static irqreturn_t velocity_intr(int irq, void *dev_instance)
return IRQ_NONE;
}
+ /* Ack the interrupt */
+ mac_write_isr(vptr->mac_regs, isr_status);
+
if (likely(napi_schedule_prep(&vptr->napi))) {
mac_disable_int(vptr->mac_regs);
__napi_schedule(&vptr->napi);
}
+
+ if (isr_status & (~(ISR_PRXI | ISR_PPRXI | ISR_PTXI | ISR_PPTXI)))
+ velocity_error(vptr, isr_status);
+
spin_unlock(&vptr->lock);
return IRQ_HANDLED;
--
1.6.0.4
--
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