Commit 2e1848a1 authored by Scott Feldman's avatar Scott Feldman Committed by Linus Torvalds

[e1000] missing Tx cleanup opportunities during intr handling

* Bug fix: missing Tx cleanup opportunities during interrupt handling.
parent 041b8a4a
...@@ -1992,7 +1992,7 @@ e1000_intr(int irq, void *data, struct pt_regs *regs) ...@@ -1992,7 +1992,7 @@ e1000_intr(int irq, void *data, struct pt_regs *regs)
} }
#else #else
for(i = 0; i < E1000_MAX_INTR; i++) for(i = 0; i < E1000_MAX_INTR; i++)
if(!e1000_clean_rx_irq(adapter) && if(!e1000_clean_rx_irq(adapter) &
!e1000_clean_tx_irq(adapter)) !e1000_clean_tx_irq(adapter))
break; break;
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment