Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189035
b: refs/heads/master
c: 1bf1e34
h: refs/heads/master
i:
  189033: b5766b6
  189031: 8f5f15f
v: v3
  • Loading branch information
Michael Chan authored and David S. Miller committed Mar 24, 2010
1 parent c83d104 commit 9be5d78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4327ba435a56ada13eedf3eb332e583c7a0586a9
refs/heads/master: 1bf1e347ef254ed8a13e7971a30e1bf3983da3d1
8 changes: 5 additions & 3 deletions trunk/drivers/net/bnx2.c
Original file line number Diff line number Diff line change
Expand Up @@ -7646,9 +7646,11 @@ poll_bnx2(struct net_device *dev)
int i;

for (i = 0; i < bp->irq_nvecs; i++) {
disable_irq(bp->irq_tbl[i].vector);
bnx2_interrupt(bp->irq_tbl[i].vector, &bp->bnx2_napi[i]);
enable_irq(bp->irq_tbl[i].vector);
struct bnx2_irq *irq = &bp->irq_tbl[i];

disable_irq(irq->vector);
irq->handler(irq->vector, &bp->bnx2_napi[i]);
enable_irq(irq->vector);
}
}
#endif
Expand Down

0 comments on commit 9be5d78

Please sign in to comment.