Skip to content

Commit c68804c

Browse files
committed
selftests: drv-net: tso: fix the GRE device name
The device type for IPv4 GRE is "gre" not "ipgre", unlike for IPv6 which uses "ip6gre". Not sure how I missed this when writing the test, perhaps because all HW I have access to is on an IPv6-only network. Fixes: 0d0f417 ("selftests: drv-net: add a simple TSO test") Reviewed-by: Simon Horman <[email protected]> Reviewed-by: Willem de Bruijn <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 7eb6b63 commit c68804c

File tree

1 file changed

+1
-1
lines changed
  • tools/testing/selftests/drivers/net/hw

1 file changed

+1
-1
lines changed

tools/testing/selftests/drivers/net/hw/tso.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def main() -> None:
216216
("", "6", "tx-tcp6-segmentation", None),
217217
("vxlan", "", "tx-udp_tnl-segmentation", ("vxlan", True, "id 100 dstport 4789 noudpcsum")),
218218
("vxlan_csum", "", "tx-udp_tnl-csum-segmentation", ("vxlan", False, "id 100 dstport 4789 udpcsum")),
219-
("gre", "4", "tx-gre-segmentation", ("ipgre", False, "")),
219+
("gre", "4", "tx-gre-segmentation", ("gre", False, "")),
220220
("gre", "6", "tx-gre-segmentation", ("ip6gre", False, "")),
221221
)
222222

0 commit comments

Comments
 (0)