Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: ethtool: add missing NETIF_F_GSO_FRAGLIST feature string

Commit 3b33583265ed ("net: Add fraglist GRO/GSO feature flags") missed
an entry for NETIF_F_GSO_FRAGLIST in netdev_features_strings array. As
a result, fraglist GSO feature is not shown in 'ethtool -k' output and
can't be toggled on/off.
The fix is trivial.

Fixes: 3b33583265ed ("net: Add fraglist GRO/GSO feature flags")
Signed-off-by: Alexander Lobakin <alobakin@pm.me>
Reviewed-by: Michal Kubecek <mkubecek@suse.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Alexander Lobakin and committed by
David S. Miller
eddbf5d0 3a2656a2

+1
+1
net/ethtool/common.c
··· 43 43 [NETIF_F_GSO_SCTP_BIT] = "tx-sctp-segmentation", 44 44 [NETIF_F_GSO_ESP_BIT] = "tx-esp-segmentation", 45 45 [NETIF_F_GSO_UDP_L4_BIT] = "tx-udp-segmentation", 46 + [NETIF_F_GSO_FRAGLIST_BIT] = "tx-gso-list", 46 47 47 48 [NETIF_F_FCOE_CRC_BIT] = "tx-checksum-fcoe-crc", 48 49 [NETIF_F_SCTP_CRC_BIT] = "tx-checksum-sctp",