[NET]: Do not check netif_running() and carrier state in ->poll()
Drivers do this to try to break out of the ->poll()'ing loop when the device is being brought administratively down. Now that we have a napi_disable() "pending" state we are going to solve that problem generically. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -1794,7 +1794,7 @@ ixgb_clean(struct napi_struct *napi, int budget)
|
||||
ixgb_clean_rx_irq(adapter, &work_done, budget);
|
||||
|
||||
/* if no Tx and not enough Rx work done, exit the polling mode */
|
||||
if((!tx_cleaned && (work_done == 0)) || !netif_running(netdev)) {
|
||||
if((!tx_cleaned && (work_done == 0))) {
|
||||
netif_rx_complete(netdev, napi);
|
||||
ixgb_irq_enable(adapter);
|
||||
}
|
||||
|
Reference in New Issue
Block a user