ethtool: Use full 32 bit speed range in ethtool's set_settings
This makes sure the ethtool's set_settings() callback of network drivers don't ignore the 16 most significant bits when ethtool calls their set_settings(). All drivers compiled with make allyesconfig on x86_64 have been updated. Signed-off-by: David Decotigny <decot@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
8ae6daca85
commit
25db033881
@@ -2555,7 +2555,8 @@ jme_set_settings(struct net_device *netdev,
|
||||
struct jme_adapter *jme = netdev_priv(netdev);
|
||||
int rc, fdc = 0;
|
||||
|
||||
if (ecmd->speed == SPEED_1000 && ecmd->autoneg != AUTONEG_ENABLE)
|
||||
if (ethtool_cmd_speed(ecmd) == SPEED_1000
|
||||
&& ecmd->autoneg != AUTONEG_ENABLE)
|
||||
return -EINVAL;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user