diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2021-10-19 09:25:29 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2021-10-19 09:25:29 +0200 |
commit | e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93 (patch) | |
tree | 77d532d6c1c729377f3d22b3f823635c384476b1 /test/perf/passt_udp | |
parent | 1bddcf3dd72fe3924b8ad473579daeb922dbf669 (diff) | |
download | passt-e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93.tar passt-e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93.tar.gz passt-e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93.tar.bz2 passt-e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93.tar.lz passt-e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93.tar.xz passt-e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93.tar.zst passt-e8ac8a3b7c48df53e7ba9e6485055d9c47d27b93.zip |
test/perf: Use CPU frequency from /proc/cpuinfo instead of cpupower(1)
Get it to work also in nested virtualisation environments.
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'test/perf/passt_udp')
-rw-r--r-- | test/perf/passt_udp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/perf/passt_udp b/test/perf/passt_udp index 528a75b..8c1b67f 100644 --- a/test/perf/passt_udp +++ b/test/perf/passt_udp @@ -14,7 +14,7 @@ onlyfor passt_in_ns gtools sysctl ip jq nproc sleep iperf3 udp_rr # From neper nstools ip jq sleep iperf3 udp_rr -htools cpupower sed +htools bc head sed test passt: throughput and latency @@ -26,7 +26,7 @@ guest /sbin/sysctl -w net.core.wmem_default=16777216 gout GW ip -j -4 ro sh|jq -rM '.[] | select(.dst == "default").gateway' gout GW6 ip -j -6 ro sh|jq -rM '.[] | select(.dst == "default").gateway' gout IFNAME ip -j li sh | jq -rM '.[] | select(.link_type == "ether").ifname' -hout FREQ cpupower frequency-info -lm | sed -n 's/.*- \(.*\) GHz$/\1/p' +hout FREQ (echo "scale=1"; sed -n 's/cpu MHz.*: \([0-9]*\)\..*$/(\1+10^2\/2)\/10^3/p' /proc/cpuinfo) | bc -l | head -n1 set THREADS 2 set STREAMS 1 |