Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 183803
b: refs/heads/master
c: c91f48d
h: refs/heads/master
i:
  183801: abaa48e
  183799: 2450984
v: v3
  • Loading branch information
Guido Barzini authored and David S. Miller committed Feb 4, 2010
1 parent 98c36d4 commit f9ce148
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2e803407400efe592e5294993a5b1e8251f6dd49
refs/heads/master: c91f48d61c5b6fb36a6fc50de923db4db009b0dc
9 changes: 9 additions & 0 deletions trunk/drivers/net/sfc/nic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1384,6 +1384,15 @@ static irqreturn_t efx_legacy_interrupt(int irq, void *dev_id)
efx->last_irq_cpu = raw_smp_processor_id();
EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_DWORD_FMT "\n",
irq, raw_smp_processor_id(), EFX_DWORD_VAL(reg));
} else if (EFX_WORKAROUND_15783(efx)) {
/* We can't return IRQ_HANDLED more than once on seeing ISR0=0
* because this might be a shared interrupt, but we do need to
* check the channel every time and preemptively rearm it if
* it's idle. */
efx_for_each_channel(channel, efx) {
if (!channel->work_pending)
efx_nic_eventq_read_ack(channel);
}
}

return result;
Expand Down

0 comments on commit f9ce148

Please sign in to comment.