Commit 8cdfa256 authored by Russell King's avatar Russell King Committed by David S. Miller

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: default avatarRussell King <rmk+kernel@armlinux.org.uk>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 45c767fa
...@@ -1373,6 +1373,9 @@ int phylink_ethtool_set_pauseparam(struct phylink *pl, ...@@ -1373,6 +1373,9 @@ int phylink_ethtool_set_pauseparam(struct phylink *pl,
ASSERT_RTNL(); ASSERT_RTNL();
if (pl->cur_link_an_mode == MLO_AN_FIXED)
return -EOPNOTSUPP;
if (!phylink_test(pl->supported, Pause) && if (!phylink_test(pl->supported, Pause) &&
!phylink_test(pl->supported, Asym_Pause)) !phylink_test(pl->supported, Asym_Pause))
return -EOPNOTSUPP; return -EOPNOTSUPP;
...@@ -1399,18 +1402,8 @@ int phylink_ethtool_set_pauseparam(struct phylink *pl, ...@@ -1399,18 +1402,8 @@ int phylink_ethtool_set_pauseparam(struct phylink *pl,
pause->tx_pause); pause->tx_pause);
} else if (!test_bit(PHYLINK_DISABLE_STOPPED, } else if (!test_bit(PHYLINK_DISABLE_STOPPED,
&pl->phylink_disable_state)) { &pl->phylink_disable_state)) {
switch (pl->cur_link_an_mode) { phylink_mac_config(pl, &pl->link_config);
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); phylink_mac_an_restart(pl);
break;
}
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment