From: David Gibson <david@gibson.dropbear.id.au>
To: passt-dev@passt.top
Subject: Re: [PATCH 7/7] test/perf: Disable periodic throughput reports to avoid vhost hang
Date: Thu, 22 Sep 2022 16:46:57 +1000 [thread overview]
Message-ID: <YywE4TSa8HJDloLD@yekko> (raw)
In-Reply-To: <20220921205507.2742203-8-sbrivio@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 3892 bytes --]
On Wed, Sep 21, 2022 at 10:55:07PM +0200, Stefano Brivio wrote:
> It appears that if we run throughput tests with one-second periodic
> reports, the sending side of the vhost channel used for SSH-based
> command dispatch occasionally stops working altogether. I haven't
> investigated this further, all I see is that output is truncated
> at some point, and doesn't resume.
Huh. I don't think I ever observed this.
> If we use gzip compression (ssh -C) this happens less frequently,
> but it still happens, seemingly indicating the issue is probably
> related to vhost itself.
>
> Disable periodic reports in iperf3 clients. The -i options were
> actually redundant, so remove them from both test files as well as
> from test_iperf3().
>
> Signed-off-by: Stefano Brivio <sbrivio(a)redhat.com>
> ---
> test/lib/test | 2 +-
> test/perf/passt_tcp | 2 +-
> test/perf/passt_udp | 2 +-
> test/perf/pasta_tcp | 2 +-
> test/perf/pasta_udp | 2 +-
> 5 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/test/lib/test b/test/lib/test
> index b69d519..d68ade4 100755
> --- a/test/lib/test
> +++ b/test/lib/test
> @@ -44,7 +44,7 @@ test_iperf3() {
> '(' \
> ' for i in $(seq 0 '${__procs}'); do' \
> ' iperf3 -c '${__dest}' -p '${__port} \
> - ' -t'${__time}' -T s${i} '"${@}"' &' \
> + ' -t'${__time}' -i0 -T s${i} '"${@}"' &' \
> ' done;' \
> ' wait' \
> ')'
> diff --git a/test/perf/passt_tcp b/test/perf/passt_tcp
> index 5f0aa3a..5ba5450 100644
> --- a/test/perf/passt_tcp
> +++ b/test/perf/passt_tcp
> @@ -46,7 +46,7 @@ set THREADS 1
> set STREAMS 8
> set TIME 10
> hout OMIT echo __TIME__ / 6 | bc -l
> -set OPTS -Z -P __STREAMS__ -l 1M -i1 -O__OMIT__ --pacing-timer 1000000
> +set OPTS -Z -P __STREAMS__ -l 1M -O__OMIT__ --pacing-timer 1000000
>
> info Throughput in Gbps, latency in µs, one thread at __FREQ__ GHz, __STREAMS__ streams
> report passt tcp __THREADS__ __FREQ__
> diff --git a/test/perf/passt_udp b/test/perf/passt_udp
> index 6bd86ff..fd2ddc1 100644
> --- a/test/perf/passt_udp
> +++ b/test/perf/passt_udp
> @@ -38,7 +38,7 @@ hout FREQ [ -n "__FREQ_CPUFREQ__" ] && echo __FREQ_CPUFREQ__ || echo __FREQ_PROC
> set THREADS 4
> set STREAMS 1
> set TIME 10
> -set OPTS -u -i1 -P __STREAMS__ --pacing-timer 1000
> +set OPTS -u -P __STREAMS__ --pacing-timer 1000
>
> info Throughput in Gbps, latency in µs, __THREADS__ threads at __FREQ__ GHz, one stream each
>
> diff --git a/test/perf/pasta_tcp b/test/perf/pasta_tcp
> index 44c5e54..1847c83 100644
> --- a/test/perf/pasta_tcp
> +++ b/test/perf/pasta_tcp
> @@ -25,7 +25,7 @@ set THREADS 2
> set STREAMS 2
> set TIME 10
> hout OMIT echo __TIME__ / 6 | bc -l
> -set OPTS -Z -w 4M -l 1M -P __STREAMS__ -i1 -O__OMIT__ --pacing-timer 10000
> +set OPTS -Z -w 4M -l 1M -P __STREAMS__ -O__OMIT__ --pacing-timer 10000
>
> hout FREQ_PROCFS (echo "scale=1"; sed -n 's/cpu MHz.*: \([0-9]*\)\..*$/(\1+10^2\/2)\/10^3/p' /proc/cpuinfo) | bc -l | head -n1
> hout FREQ_CPUFREQ (echo "scale=1"; printf '( %i + 10^5 / 2 ) / 10^6\n' $(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq) ) | bc -l
> diff --git a/test/perf/pasta_udp b/test/perf/pasta_udp
> index abb88b0..27ea724 100644
> --- a/test/perf/pasta_udp
> +++ b/test/perf/pasta_udp
> @@ -23,7 +23,7 @@ hout FREQ [ -n "__FREQ_CPUFREQ__" ] && echo __FREQ_CPUFREQ__ || echo __FREQ_PROC
> set THREADS 1
> set STREAMS 4
> set TIME 10
> -set OPTS -u -i1 -P __STREAMS__
> +set OPTS -u -P __STREAMS__
>
> info Throughput in Gbps, latency in µs, one thread at __FREQ__ GHz, __STREAMS__ streams
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
prev parent reply other threads:[~2022-09-22 6:46 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-21 20:55 [PATCH 0/7] Fixes and workarounds for tests, Coverity warnings Stefano Brivio
2022-09-21 20:55 ` [PATCH 1/7] test/perf: Always use /sbin/sysctl in tcp test Stefano Brivio
2022-09-22 6:28 ` David Gibson
2022-09-21 20:55 ` [PATCH 2/7] test/perf: Switch performance test duration to 10 seconds instead of 30 Stefano Brivio
2022-09-22 6:29 ` David Gibson
2022-09-21 20:55 ` [PATCH 3/7] tap: Check return value of accept4() before calling getsockopt() Stefano Brivio
2022-09-22 6:30 ` David Gibson
2022-09-21 20:55 ` [PATCH 4/7] conf, tcp, udp: Arrays for ports need 2^16 values, not 2^16-8 Stefano Brivio
2022-09-22 6:43 ` David Gibson
2022-09-22 8:21 ` Stefano Brivio
2022-09-22 23:39 ` Stefano Brivio
2022-09-23 2:09 ` David Gibson
2022-09-21 20:55 ` [PATCH 5/7] test/lib: Restore IFS while executing directives in def blocks Stefano Brivio
2022-09-22 6:44 ` David Gibson
2022-09-22 8:25 ` Stefano Brivio
2022-09-23 6:55 ` David Gibson
2022-09-21 20:55 ` [PATCH 6/7] test/lib: Wait on iperf3 clients to be done, then send SIGINT to servers Stefano Brivio
2022-09-21 20:55 ` [PATCH 7/7] test/perf: Disable periodic throughput reports to avoid vhost hang Stefano Brivio
2022-09-22 6:46 ` David Gibson [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YywE4TSa8HJDloLD@yekko \
--to=david@gibson.dropbear.id.au \
--cc=passt-dev@passt.top \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://passt.top/passt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).