ETHTOOL_LINK_MODE_10000baseR_FEC_BIT link mode is listed in ethtool_link_mode_bit_indices array but doesn't have its name assigned in the table in dump_link_caps() (so that it's not shown in "ethtool <dev>" output) and is not listed in the manual page. Add it to both.
Signed-off-by: Michal Kubecek <mkube...@suse.cz> --- ethtool.8.in | 1 + ethtool.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ethtool.8.in b/ethtool.8.in index 5a26cff5fb33..3d288eaadf23 100644 --- a/ethtool.8.in +++ b/ethtool.8.in @@ -633,6 +633,7 @@ lB l lB. 0x1000 10000baseT Full 0x40000 10000baseKX4 Full 0x80000 10000baseKR Full +0x100000 10000baseR_FEC 0x40000000000 10000baseCR Full 0x80000000000 10000baseSR Full 0x100000000000 10000baseLR Full diff --git a/ethtool.c b/ethtool.c index fb4c0886ca84..b6a1eaa383a3 100644 --- a/ethtool.c +++ b/ethtool.c @@ -633,6 +633,8 @@ static void dump_link_caps(const char *prefix, const char *an_prefix, "10000baseKX4/Full" }, { 0, ETHTOOL_LINK_MODE_10000baseKR_Full_BIT, "10000baseKR/Full" }, + { 0, ETHTOOL_LINK_MODE_10000baseR_FEC_BIT, + "10000baseR_FEC" }, { 0, ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT, "20000baseMLD2/Full" }, { 0, ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT, -- 2.20.1