diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2017-02-17 16:07:33 -0800 |
---|---|---|
committer | Sasha Levin <alexander.levin@verizon.com> | 2017-09-10 16:36:05 -0400 |
commit | 324f2efcdeae731ff838d6614c0821c3685e0fe9 (patch) | |
tree | 10d3b388439167b8e500286a2c12679dc6b85a99 | |
parent | 128f29a4d83cab0ac3d1f5b47abafd32096d1b50 (diff) |
net: phy: Fix PHY unbind crash
[ Upstream commit 7b9a88a390dacb37b051a7b09b9a08f546edf5eb ]
The PHY library does not deal very well with bind and unbind events. The first
thing we would see is that we were not properly canceling the PHY state machine
workqueue, so we would be crashing while dereferencing phydev->drv since there
is no driver attached anymore.
Suggested-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
-rw-r--r-- | drivers/net/phy/phy_device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c index a4461643d1ef..afb87840f853 100644 --- a/drivers/net/phy/phy_device.c +++ b/drivers/net/phy/phy_device.c @@ -1281,6 +1281,8 @@ static int phy_remove(struct device *dev) { struct phy_device *phydev = to_phy_device(dev); + cancel_delayed_work_sync(&phydev->state_queue); + mutex_lock(&phydev->lock); phydev->state = PHY_DOWN; mutex_unlock(&phydev->lock); |