mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 22:24:09 +08:00
net: mv643xx_eth: Do not clobber PHY link outside of state machine
Calling phy_read_status() means that we may call into
genphy_read_status() which in turn will use genphy_update_link() which
can make changes to phydev->link outside of the state machine's state
transitions. This is an invalid behavior that is now caught as of
811a919135
("phy state machine: failsafe leave invalid RUNNING state")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
501ec18757
commit
1105a2d3b3
@ -1504,9 +1504,7 @@ mv643xx_eth_get_link_ksettings_phy(struct mv643xx_eth_private *mp,
|
||||
int err;
|
||||
u32 supported, advertising;
|
||||
|
||||
err = phy_read_status(dev->phydev);
|
||||
if (err == 0)
|
||||
err = phy_ethtool_ksettings_get(dev->phydev, cmd);
|
||||
err = phy_ethtool_ksettings_get(dev->phydev, cmd);
|
||||
|
||||
/*
|
||||
* The MAC does not support 1000baseT_Half.
|
||||
|
Loading…
Reference in New Issue
Block a user