mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 17:41:44 +00:00
be2net: change to show correct physical link status
link status is wrongly displayed under certain circumstances. This change fixes it. Signed-off-by: Somnath K <somnathk@serverengines.com> Signed-off-by: Ajit Khaparde <ajitk@serverengines.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7c185276e8
commit
48e9989e03
@ -322,10 +322,11 @@ static int be_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
|
||||
int status;
|
||||
u16 intf_type;
|
||||
|
||||
if (adapter->link_speed < 0) {
|
||||
if ((adapter->link_speed < 0) || (!(netdev->flags & IFF_UP))) {
|
||||
status = be_cmd_link_status_query(adapter, &link_up,
|
||||
&mac_speed, &link_speed);
|
||||
|
||||
be_link_status_update(adapter, link_up);
|
||||
/* link_speed is in units of 10 Mbps */
|
||||
if (link_speed) {
|
||||
ecmd->speed = link_speed*10;
|
||||
|
Loading…
Reference in New Issue
Block a user