diff options
author | Dimitris Michailidis <[email protected]> | 2022-06-22 17:02:34 -0700 |
---|---|---|
committer | Jakub Kicinski <[email protected]> | 2022-06-23 21:19:03 -0700 |
commit | b968080808f7f28b89aa495b7402ba48eb17ee93 (patch) | |
tree | 12882b0b8219e73d4a4f8cf11c6dcdbc9011f188 | |
parent | 1228b34c8d0ecf6de18c4c95d22f60cc8607c50a (diff) |
selftests/net: pass ipv6_args to udpgso_bench's IPv6 TCP test
udpgso_bench.sh has been running its IPv6 TCP test with IPv4 arguments
since its initial conmit. Looks like a typo.
Fixes: 3a687bef148d ("selftests: udp gso benchmark")
Cc: [email protected]
Signed-off-by: Dimitris Michailidis <[email protected]>
Acked-by: Willem de Bruijn <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
-rwxr-xr-x | tools/testing/selftests/net/udpgso_bench.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/udpgso_bench.sh b/tools/testing/selftests/net/udpgso_bench.sh index 80b5d352702e..dc932fd65363 100755 --- a/tools/testing/selftests/net/udpgso_bench.sh +++ b/tools/testing/selftests/net/udpgso_bench.sh @@ -120,7 +120,7 @@ run_all() { run_udp "${ipv4_args}" echo "ipv6" - run_tcp "${ipv4_args}" + run_tcp "${ipv6_args}" run_udp "${ipv6_args}" } |