Skip to content

Commit b4730ae

Browse files
solbjorndavem330
authored andcommitted
net: ethtool: add missing string for NETIF_F_GSO_TUNNEL_REMCSUM
Commit e585f23 ("udp: Changes to udp_offload to support remote checksum offload") added new GSO type and a corresponding netdev feature, but missed Ethtool's 'netdev_features_strings' table. Give it a name so it will be exposed to userspace and become available for manual configuration. v3: - decouple from "netdev_features_strings[] cleanup" series; - no functional changes. v2: - don't split the "Fixes:" tag across lines; - no functional changes. Fixes: e585f23 ("udp: Changes to udp_offload to support remote checksum offload") Signed-off-by: Alexander Lobakin <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 2bcd350 commit b4730ae

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
@@ -40,6 +40,7 @@ const char netdev_features_strings[NETDEV_FEATURE_COUNT][ETH_GSTRING_LEN] = {
4040
[NETIF_F_GSO_UDP_TUNNEL_BIT] = "tx-udp_tnl-segmentation",
4141
[NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT] = "tx-udp_tnl-csum-segmentation",
4242
[NETIF_F_GSO_PARTIAL_BIT] = "tx-gso-partial",
43+
[NETIF_F_GSO_TUNNEL_REMCSUM_BIT] = "tx-tunnel-remcsum-segmentation",
4344
[NETIF_F_GSO_SCTP_BIT] = "tx-sctp-segmentation",
4445
[NETIF_F_GSO_ESP_BIT] = "tx-esp-segmentation",
4546
[NETIF_F_GSO_UDP_L4_BIT] = "tx-udp-segmentation",

0 commit comments

Comments
 (0)