mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 18:16:45 +07:00
ixgbe: report correct media type for KR, KX and KX4 interfaces
ethtool reports backplane type interfaces as 1000/10000baseT link modes. This has been corrected to report the media as KR, KX or KX4 based on the backplane interface present. Signed-off-by: Veola Nazareth <veola.nazareth@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
8238ac0ce2
commit
27b23f96f3
@ -193,7 +193,9 @@ static int ixgbe_get_settings(struct net_device *netdev,
|
||||
if (supported_link & IXGBE_LINK_SPEED_10GB_FULL)
|
||||
ecmd->supported |= ixgbe_get_supported_10gtypes(hw);
|
||||
if (supported_link & IXGBE_LINK_SPEED_1GB_FULL)
|
||||
ecmd->supported |= SUPPORTED_1000baseT_Full;
|
||||
ecmd->supported |= (ixgbe_isbackplane(hw->phy.media_type)) ?
|
||||
SUPPORTED_1000baseKX_Full :
|
||||
SUPPORTED_1000baseT_Full;
|
||||
if (supported_link & IXGBE_LINK_SPEED_100_FULL)
|
||||
ecmd->supported |= ixgbe_isbackplane(hw->phy.media_type) ?
|
||||
SUPPORTED_1000baseKX_Full :
|
||||
|
Loading…
Reference in New Issue
Block a user