mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-15 18:34:47 +08:00
i40e: Fix message for other card without FEC.
When variable "req_fec, fec, an" are empty, dmesg shows log with "Requested FEC: , Negotiated FEC: , Autoneg:". Add link dmesg log for cards without FEC. Signed-off-by: Czeslaw Zagorski <czeslawx.zagorski@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
3fc9d8e1d6
commit
22afe2cf10
@ -6594,11 +6594,15 @@ void i40e_print_link_message(struct i40e_vsi *vsi, bool isup)
|
||||
else
|
||||
req_fec = "CL74 FC-FEC/BASE-R";
|
||||
}
|
||||
netdev_info(vsi->netdev,
|
||||
"NIC Link is Up, %sbps Full Duplex, Requested FEC: %s, Negotiated FEC: %s, Autoneg: %s, Flow Control: %s\n",
|
||||
speed, req_fec, fec, an, fc);
|
||||
} else {
|
||||
netdev_info(vsi->netdev,
|
||||
"NIC Link is Up, %sbps Full Duplex, Flow Control: %s\n",
|
||||
speed, fc);
|
||||
}
|
||||
|
||||
netdev_info(vsi->netdev,
|
||||
"NIC Link is Up, %sbps Full Duplex, Requested FEC: %s, Negotiated FEC: %s, Autoneg: %s, Flow Control: %s\n",
|
||||
speed, req_fec, fec, an, fc);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user