via-velocity: Fix races on shared interrupts
authorSimon Kagstrom <simon.kagstrom@netinsight.net>
Tue, 9 Feb 2010 23:38:25 +0000 (23:38 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 10 Feb 2010 18:55:02 +0000 (10:55 -0800)
commit3f2e8d9f13246382fbda6f03178eef867a9bfbe2
tree69ef8e92e70e8739e5121e7705a696bc63691d38
parent39c2ff43ea3830ccc693f965abdace96e514b1c5
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_lock_irqsave in velocity_poll. 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.

  Also unlock the spinlock only after enabling the interrupt in
  velocity_poll.

The error path is moved to the interrupt handler since this is where the
ISR is checked now.

Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
Signed-off-by: Anders Grafstrom <anders.grafstrom@netinsight.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/via-velocity.c