linux_dsm_epyc7002/tools/testing/selftests/net/udpgso_bench.sh
Paolo Abeni 3327a9c463 selftests: add functionals test for UDP GRO
Extends the existing udp programs to allow checking for proper
GRO aggregation/GSO size, and run the tests via a shell script, using
a veth pair with XDP program attached to trigger the GRO code path.

rfc v3 -> v1:
 - use ip route to attach the xdp helper to the veth

rfc v2 -> rfc v3:
 - add missing test program options documentation
 - fix sporatic test failures (receiver faster than sender)

Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2018-11-07 16:23:05 -08:00

72 lines
1021 B
Bash
Executable File

#!/bin/bash
# SPDX-License-Identifier: GPL-2.0
#
# Run a series of udpgso benchmarks
wake_children() {
local -r jobs="$(jobs -p)"
if [[ "${jobs}" != "" ]]; then
kill -1 ${jobs} 2>/dev/null
fi
}
trap wake_children EXIT
run_one() {
local -r args=$@
./udpgso_bench_rx &
./udpgso_bench_rx -t &
./udpgso_bench_tx ${args}
}
run_in_netns() {
local -r args=$@
./in_netns.sh $0 __subprocess ${args}
}
run_udp() {
local -r args=$@
echo "udp"
run_in_netns ${args}
echo "udp gso"
run_in_netns ${args} -S 0
}
run_tcp() {
local -r args=$@
echo "tcp"
run_in_netns ${args} -t
echo "tcp zerocopy"
run_in_netns ${args} -t -z
}
run_all() {
local -r core_args="-l 4"
local -r ipv4_args="${core_args} -4 -D 127.0.0.1"
local -r ipv6_args="${core_args} -6 -D ::1"
echo "ipv4"
run_tcp "${ipv4_args}"
run_udp "${ipv4_args}"
echo "ipv6"
run_tcp "${ipv4_args}"
run_udp "${ipv6_args}"
}
if [[ $# -eq 0 ]]; then
run_all
elif [[ $1 == "__subprocess" ]]; then
shift
run_one $@
else
run_in_netns $@
fi