Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 183477
b: refs/heads/master
c: 7f081d4
h: refs/heads/master
i:
  183475: 966c2ec
v: v3
  • Loading branch information
Alexander Duyck authored and David S. Miller committed Jan 8, 2010
1 parent c7600e4 commit 7f40fb3
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: 959d20bfe8b90023c862dec3956054027a5a0912
refs/heads/master: 7f081d405adb5f905db11c6449319ab7c670722e
9 changes: 9 additions & 0 deletions trunk/drivers/net/igb/igb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4110,6 +4110,9 @@ static irqreturn_t igb_msix_other(int irq, void *data)
u32 icr = rd32(E1000_ICR);
/* reading ICR causes bit 31 of EICR to be cleared */

if (icr & E1000_ICR_DRSTA)
schedule_work(&adapter->reset_task);

if (icr & E1000_ICR_DOUTSYNC) {
/* HW is reporting DMA is out of sync */
adapter->stats.doosync++;
Expand Down Expand Up @@ -4733,6 +4736,9 @@ static irqreturn_t igb_intr_msi(int irq, void *data)

igb_write_itr(q_vector);

if (icr & E1000_ICR_DRSTA)
schedule_work(&adapter->reset_task);

if (icr & E1000_ICR_DOUTSYNC) {
/* HW is reporting DMA is out of sync */
adapter->stats.doosync++;
Expand Down Expand Up @@ -4772,6 +4778,9 @@ static irqreturn_t igb_intr(int irq, void *data)
if (!(icr & E1000_ICR_INT_ASSERTED))
return IRQ_NONE;

if (icr & E1000_ICR_DRSTA)
schedule_work(&adapter->reset_task);

if (icr & E1000_ICR_DOUTSYNC) {
/* HW is reporting DMA is out of sync */
adapter->stats.doosync++;
Expand Down

0 comments on commit 7f40fb3

Please sign in to comment.