]> git.hungrycats.org Git - linux/commitdiff
net: micrel: Fix receiving the timestamp in the frame for lan8841
authorHoratiu Vultur <horatiu.vultur@microchip.com>
Mon, 13 May 2024 19:21:57 +0000 (21:21 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 May 2024 07:49:29 +0000 (09:49 +0200)
[ Upstream commit aea27a92a41dae14843f92c79e9e42d8f570105c ]

The blamed commit started to use the ptp workqueue to get the second
part of the timestamp. And when the port was set down, then this
workqueue is stopped. But if the config option NETWORK_PHY_TIMESTAMPING
is not enabled, then the ptp_clock is not initialized so then it would
crash when it would try to access the delayed work.
So then basically by setting up and then down the port, it would crash.
The fix consists in checking if the ptp_clock is initialized and only
then cancel the delayed work.

Fixes: cc7554954848 ("net: micrel: Change to receive timestamp in the frame for lan8841")
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/phy/micrel.c

index 1f950c824418fab3c93f4cef622cdfe5f8164e41..827db6a6ff397301491344073a2017c6999f8fa8 100644 (file)
@@ -4635,7 +4635,8 @@ static int lan8841_suspend(struct phy_device *phydev)
        struct kszphy_priv *priv = phydev->priv;
        struct kszphy_ptp_priv *ptp_priv = &priv->ptp_priv;
 
-       ptp_cancel_worker_sync(ptp_priv->ptp_clock);
+       if (ptp_priv->ptp_clock)
+               ptp_cancel_worker_sync(ptp_priv->ptp_clock);
 
        return genphy_suspend(phydev);
 }