Skip to content

Commit eddbf5d

Browse files
solbjorndavem330
authored andcommitted
net: ethtool: add missing NETIF_F_GSO_FRAGLIST feature string
Commit 3b33583 ("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: 3b33583 ("net: Add fraglist GRO/GSO feature flags") Signed-off-by: Alexander Lobakin <[email protected]> Reviewed-by: Michal Kubecek <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 3a2656a commit eddbf5d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

net/ethtool/common.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ const char netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN] = {
4343
[NETIF_F_GSO_SCTP_BIT] = "tx-sctp-segmentation",
4444
[NETIF_F_GSO_ESP_BIT] = "tx-esp-segmentation",
4545
[NETIF_F_GSO_UDP_L4_BIT] = "tx-udp-segmentation",
46+
[NETIF_F_GSO_FRAGLIST_BIT] = "tx-gso-list",
4647

4748
[NETIF_F_FCOE_CRC_BIT] = "tx-checksum-fcoe-crc",
4849
[NETIF_F_SCTP_CRC_BIT] = "tx-checksum-sctp",

0 commit comments

Comments
 (0)