We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d709d9 commit 3169134Copy full SHA for 3169134
drivers/net/ethernet/freescale/fec_main.c
@@ -451,7 +451,7 @@ fec_restart(struct net_device *ndev, int duplex)
451
netif_device_detach(ndev);
452
napi_disable(&fep->napi);
453
netif_stop_queue(ndev);
454
- netif_tx_lock(ndev);
+ netif_tx_lock_bh(ndev);
455
}
456
457
/* Whack a reset. We should wait for this. */
@@ -619,7 +619,7 @@ fec_restart(struct net_device *ndev, int duplex)
619
netif_device_attach(ndev);
620
napi_enable(&fep->napi);
621
netif_wake_queue(ndev);
622
- netif_tx_unlock(ndev);
+ netif_tx_unlock_bh(ndev);
623
624
625
0 commit comments