mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
be2net: Fix to apply duplex value as unknown when link is down.
Suggested-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: Sarveshwar Bandi <sarveshwar.bandi@emulex.com> Signed-off-by: Somnath Kotur <somnath.kotur@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
22ca7a6e9a
commit
682256dbef
@ -618,7 +618,7 @@ static int be_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
|
||||
ecmd->supported = adapter->phy.supported;
|
||||
}
|
||||
|
||||
ecmd->duplex = DUPLEX_FULL;
|
||||
ecmd->duplex = netif_carrier_ok(netdev) ? DUPLEX_FULL : DUPLEX_UNKNOWN;
|
||||
ecmd->phy_address = adapter->port_num;
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user