|
@@ -3878,7 +3878,7 @@ static void e1000_flush_desc_rings(struct e1000_adapter *adapter)
|
|
/* do nothing if we're not in faulty state, or if the queue is empty */
|
|
/* do nothing if we're not in faulty state, or if the queue is empty */
|
|
tdlen = er32(TDLEN(0));
|
|
tdlen = er32(TDLEN(0));
|
|
hang_state = er32(FEXTNVM7);
|
|
hang_state = er32(FEXTNVM7);
|
|
- if ((hang_state & E1000_FEXTNVM7_NEED_DESCRING_FLUSH) || tdlen)
|
|
|
|
|
|
+ if (!(hang_state & E1000_FEXTNVM7_NEED_DESCRING_FLUSH) || !tdlen)
|
|
return;
|
|
return;
|
|
e1000_flush_tx_ring(adapter);
|
|
e1000_flush_tx_ring(adapter);
|
|
/* recheck, maybe the fault is caused by the rx ring */
|
|
/* recheck, maybe the fault is caused by the rx ring */
|