OSDN Git Service

net: phy: do not print dump stack if device was removed
authorOleksij Rempel <o.rempel@pengutronix.de>
Mon, 7 Jun 2021 08:27:26 +0000 (10:27 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Jun 2021 20:23:02 +0000 (13:23 -0700)
In case phy_state_machine() works on top of USB device, we can get -ENODEV
at any point. So, be less noisy if device was removed.

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/phy.c

index 1f0512e..1089a93 100644 (file)
@@ -1136,6 +1136,9 @@ void phy_state_machine(struct work_struct *work)
        else if (do_suspend)
                phy_suspend(phydev);
 
+       if (err == -ENODEV)
+               return;
+
        if (err < 0)
                phy_error(phydev);