diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2017-12-26 23:15:12 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-01-02 13:39:11 -0500 |
commit | ac817f5ad066697e4d4d35ec68c974eba2c5f17a (patch) | |
tree | 2040fceb6fa2ab69b4dda512a3435d0329a669b1 /drivers/net/phy/phylink.c | |
parent | d02fd6e7d2933ede6478a15f9e4ce8a93845824e (diff) | |
download | linux-ac817f5ad066697e4d4d35ec68c974eba2c5f17a.tar.bz2 |
phylink: ensure we report link down when LOS asserted
Although we disable the netdev carrier, we fail to report in the kernel
log that the link went down. Fix this.
Fixes: 9525ae83959b ("phylink: add phylink infrastructure")
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/phylink.c')
-rw-r--r-- | drivers/net/phy/phylink.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c index 827f3f92560e..150cd95a6e1e 100644 --- a/drivers/net/phy/phylink.c +++ b/drivers/net/phy/phylink.c @@ -1429,9 +1429,8 @@ static void phylink_sfp_link_down(void *upstream) WARN_ON(!lockdep_rtnl_is_held()); set_bit(PHYLINK_DISABLE_LINK, &pl->phylink_disable_state); + queue_work(system_power_efficient_wq, &pl->resolve); flush_work(&pl->resolve); - - netif_carrier_off(pl->netdev); } static void phylink_sfp_link_up(void *upstream) |