net: phylink: remove pause mode ethtool setting for fixed links
Remove the ability for ethtool -A to change the pause settings for fixed links; if this is really required, we can reinstate it later. Andrew Lunn agrees: "So I think it is safe to not implement ethtool -A, at least until somebody has a real use case for it." Lets avoid making things too complex for use cases that aren't being used. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: hongrongxuan <hongrongxuan@huawei.com>
This commit is contained in:
parent
3795da797d
commit
f4a0979d46
|
@ -1332,6 +1332,9 @@ int phylink_ethtool_set_pauseparam(struct phylink *pl,
|
|||
|
||||
ASSERT_RTNL();
|
||||
|
||||
if (pl->cur_link_an_mode == MLO_AN_FIXED)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (!phylink_test(pl->supported, Pause) &&
|
||||
!phylink_test(pl->supported, Asym_Pause))
|
||||
return -EOPNOTSUPP;
|
||||
|
@ -1358,18 +1361,8 @@ int phylink_ethtool_set_pauseparam(struct phylink *pl,
|
|||
pause->tx_pause);
|
||||
} else if (!test_bit(PHYLINK_DISABLE_STOPPED,
|
||||
&pl->phylink_disable_state)) {
|
||||
switch (pl->cur_link_an_mode) {
|
||||
case MLO_AN_FIXED:
|
||||
/* Should we allow fixed links to change against the config? */
|
||||
phylink_resolve_flow(pl, config);
|
||||
phylink_mac_config(pl, config);
|
||||
break;
|
||||
|
||||
case MLO_AN_INBAND:
|
||||
phylink_mac_config(pl, config);
|
||||
phylink_mac_an_restart(pl);
|
||||
break;
|
||||
}
|
||||
phylink_mac_config(pl, &pl->link_config);
|
||||
phylink_mac_an_restart(pl);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue