projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7eb6b63
)
selftests: drv-net: tso: fix the GRE device name
author
Jakub Kicinski
<kuba@kernel.org>
Wed, 4 Jun 2025 01:20:31 +0000
(18:20 -0700)
committer
Jakub Kicinski
<kuba@kernel.org>
Thu, 5 Jun 2025 15:00:55 +0000
(08:00 -0700)
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:
0d0f4174f6c8
("selftests: drv-net: add a simple TSO test")
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Link:
https://patch.msgid.link/20250604012031.891242-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
tools/testing/selftests/drivers/net/hw/tso.py
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/drivers/net/hw/tso.py
b/tools/testing/selftests/drivers/net/hw/tso.py
index
e1ecb92
..
eec647e
100755
(executable)
--- a/
tools/testing/selftests/drivers/net/hw/tso.py
+++ b/
tools/testing/selftests/drivers/net/hw/tso.py
@@
-216,7
+216,7
@@
def main() -> None:
("", "6", "tx-tcp6-segmentation", None),
("vxlan", "", "tx-udp_tnl-segmentation", ("vxlan", True, "id 100 dstport 4789 noudpcsum")),
("vxlan_csum", "", "tx-udp_tnl-csum-segmentation", ("vxlan", False, "id 100 dstport 4789 udpcsum")),
- ("gre", "4", "tx-gre-segmentation", ("
ipgre",
False, "")),
+ ("gre", "4", "tx-gre-segmentation", ("
gre",
False, "")),
("gre", "6", "tx-gre-segmentation", ("ip6gre", False, "")),
)