ice: Recognize higher speeds
In ice_print_link_msg, add cases for 50GB and 100GB speeds. This results in the right speed being reported on load, instead of "Unknownbps". When VF link if forced (in ice_set_pfe_link_forced), report max speed 100GB. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@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
4f70daa081
commit
072efdf8bf
|
@ -645,6 +645,12 @@ void ice_print_link_msg(struct ice_vsi *vsi, bool isup)
|
|||
}
|
||||
|
||||
switch (vsi->port_info->phy.link_info.link_speed) {
|
||||
case ICE_AQ_LINK_SPEED_100GB:
|
||||
speed = "100 G";
|
||||
break;
|
||||
case ICE_AQ_LINK_SPEED_50GB:
|
||||
speed = "50 G";
|
||||
break;
|
||||
case ICE_AQ_LINK_SPEED_40GB:
|
||||
speed = "40 G";
|
||||
break;
|
||||
|
|
|
@ -103,7 +103,7 @@ ice_set_pfe_link_forced(struct ice_vf *vf, struct virtchnl_pf_event *pfe,
|
|||
u16 link_speed;
|
||||
|
||||
if (link_up)
|
||||
link_speed = ICE_AQ_LINK_SPEED_40GB;
|
||||
link_speed = ICE_AQ_LINK_SPEED_100GB;
|
||||
else
|
||||
link_speed = ICE_AQ_LINK_SPEED_UNKNOWN;
|
||||
|
||||
|
|
Loading…
Reference in New Issue