mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-06 03:41:52 +08:00
avoid deadlock in stmmac
This commit is contained in:
@@ -3969,12 +3969,12 @@ static int stmmac_release(struct net_device *dev)
|
||||
struct stmmac_priv *priv = netdev_priv(dev);
|
||||
u32 chan;
|
||||
|
||||
if (device_may_wakeup(priv->device))
|
||||
phylink_speed_down(priv->phylink, false);
|
||||
/* Stop and disconnect the PHY */
|
||||
if (get_ecdev(priv)) {
|
||||
rtnl_lock();
|
||||
}
|
||||
if (device_may_wakeup(priv->device))
|
||||
phylink_speed_down(priv->phylink, false);
|
||||
/* Stop and disconnect the PHY */
|
||||
phylink_stop(priv->phylink);
|
||||
phylink_disconnect_phy(priv->phylink);
|
||||
if (get_ecdev(priv)) {
|
||||
@@ -7552,14 +7552,11 @@ int stmmac_ec_dvr_remove(struct device *dev)
|
||||
stmmac_stop_all_dma(priv);
|
||||
stmmac_mac_set(priv, priv->ioaddr, false);
|
||||
if (get_ecdev(priv)) {
|
||||
mutex_lock(&priv->lock);
|
||||
ecdev_close(get_ecdev(priv));
|
||||
irq_work_sync(&priv->ec_watchdog_kicker);
|
||||
ecdev_withdraw(get_ecdev(priv));
|
||||
priv->ecdev_ = NULL;
|
||||
priv->ecdev_initialized = false;
|
||||
|
||||
mutex_unlock(&priv->lock);
|
||||
} else {
|
||||
netif_carrier_off(ndev);
|
||||
unregister_netdev(ndev);
|
||||
|
||||
Reference in New Issue
Block a user