[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:
David S. Miller
2008-01-07 20:48:21 -08:00
parent a0a46196cd
commit 4ec2411980
15 changed files with 9 additions and 55 deletions

View File

@@ -1273,7 +1273,7 @@ rx_action:
epic_rx_err(dev, ep);
if (netif_running(dev) && (work_done < budget)) {
if (work_done < budget) {
unsigned long flags;
int more;