提交 31a6de34 编写于 作者: R Russell King 提交者: David S. Miller

net: fec: quiesce packet processing before stopping device in fec_suspend()

fec_suspend() calls fec_stop() to stop the transmit ring while the
transmit packet processing is still active.  This can lead to the
transmit queue being restarted by an intervening packet queued for
transmission, or by the tx quirk timer expiring.

Fix this by disabling NAPI first, which will ensure that the NAPI
handlers are not running.  Then, take the transmit lock before
detaching the netif device.  This ensures that there are no races
with the transmit path - and also ensures that the watchdog won't
fire.

We can then safely stop the ethernet device itself, knowing that the
rest of the driver is safely shut down.

On resume, we bring the device back up in reverse order - we restart
the device, reattach the device (under the tx lock), and then enable
the NAPI handlers.

We also need to adjust the close function to cope with this new
sequence, so that it's possible to cleanly close down the driver
after the hardware fails to resume (eg, due to the regulator_enable()
or pinctrl calls in the resume path returning an error.)
Acked-by: NFugang Duan <B38611@freescale.com>
Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 6af42d42
...@@ -2211,10 +2211,11 @@ fec_enet_close(struct net_device *ndev) ...@@ -2211,10 +2211,11 @@ fec_enet_close(struct net_device *ndev)
phy_stop(fep->phy_dev); phy_stop(fep->phy_dev);
napi_disable(&fep->napi); if (netif_device_present(ndev)) {
netif_tx_disable(ndev); napi_disable(&fep->napi);
if (netif_device_present(ndev)) netif_tx_disable(ndev);
fec_stop(ndev); fec_stop(ndev);
}
phy_disconnect(fep->phy_dev); phy_disconnect(fep->phy_dev);
fep->phy_dev = NULL; fep->phy_dev = NULL;
...@@ -2701,8 +2702,11 @@ fec_suspend(struct device *dev) ...@@ -2701,8 +2702,11 @@ fec_suspend(struct device *dev)
rtnl_lock(); rtnl_lock();
if (netif_running(ndev)) { if (netif_running(ndev)) {
phy_stop(fep->phy_dev); phy_stop(fep->phy_dev);
fec_stop(ndev); napi_disable(&fep->napi);
netif_tx_lock_bh(ndev);
netif_device_detach(ndev); netif_device_detach(ndev);
netif_tx_unlock_bh(ndev);
fec_stop(ndev);
} }
rtnl_unlock(); rtnl_unlock();
...@@ -2735,12 +2739,10 @@ fec_resume(struct device *dev) ...@@ -2735,12 +2739,10 @@ fec_resume(struct device *dev)
rtnl_lock(); rtnl_lock();
if (netif_running(ndev)) { if (netif_running(ndev)) {
napi_disable(&fep->napi);
netif_tx_lock_bh(ndev);
fec_restart(ndev, fep->full_duplex); fec_restart(ndev, fep->full_duplex);
netif_tx_lock_bh(ndev);
netif_device_attach(ndev); netif_device_attach(ndev);
netif_tx_unlock_bh(ndev); netif_tx_unlock_bh(ndev);
netif_device_attach(ndev);
napi_enable(&fep->napi); napi_enable(&fep->napi);
phy_start(fep->phy_dev); phy_start(fep->phy_dev);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册