Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 118896
b: refs/heads/master
c: b2af2c1
h: refs/heads/master
v: v3
  • Loading branch information
Neil Horman authored and David S. Miller committed Nov 13, 2008
1 parent b6f8e0e commit d34eaa9
Show file tree
Hide file tree
Showing 2 changed files with 7 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: ddd535c713c788f3c23c6548c4ba985a7593113c
refs/heads/master: b2af2c1d3e4ddeea9d02c46d0df0c322cc7b7061
9 changes: 6 additions & 3 deletions trunk/drivers/net/bnx2.c
Original file line number Diff line number Diff line change
Expand Up @@ -7204,10 +7204,13 @@ static void
poll_bnx2(struct net_device *dev)
{
struct bnx2 *bp = netdev_priv(dev);
int i;

disable_irq(bp->pdev->irq);
bnx2_interrupt(bp->pdev->irq, dev);
enable_irq(bp->pdev->irq);
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);
}
}
#endif

Expand Down

0 comments on commit d34eaa9

Please sign in to comment.