public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: passt-dev@passt.top
Subject: Re: [PATCH 2/7] test/perf: Switch performance test duration to 10 seconds instead of 30
Date: Thu, 22 Sep 2022 16:29:20 +1000	[thread overview]
Message-ID: <YywAwL4PK71jGl+q@yekko> (raw)
In-Reply-To: <20220921205507.2742203-3-sbrivio@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 2569 bytes --]

On Wed, Sep 21, 2022 at 10:55:02PM +0200, Stefano Brivio wrote:
> It looks like the workaround for the virtio_net TX hang issue is
> working less reliably with the new command dispatch mechanism, I'm
> not sure why. Switch to 10 seconds, at least for the moment.
> 
> Signed-off-by: Stefano Brivio <sbrivio(a)redhat.com>

Reviewed-by: David Gibson <david(a)gibson.dropbear.id.au>

> ---
>  test/perf/passt_tcp | 2 +-
>  test/perf/passt_udp | 2 +-
>  test/perf/pasta_tcp | 2 +-
>  test/perf/pasta_udp | 2 +-
>  4 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/test/perf/passt_tcp b/test/perf/passt_tcp
> index bee4f9e..5f0aa3a 100644
> --- a/test/perf/passt_tcp
> +++ b/test/perf/passt_tcp
> @@ -44,7 +44,7 @@ hout	FREQ [ -n "__FREQ_CPUFREQ__" ] && echo __FREQ_CPUFREQ__ || echo __FREQ_PROC
>  
>  set	THREADS 1
>  set	STREAMS 8
> -set	TIME 30
> +set	TIME 10
>  hout	OMIT echo __TIME__ / 6 | bc -l
>  set	OPTS -Z -P __STREAMS__ -l 1M -i1 -O__OMIT__ --pacing-timer 1000000
>  
> diff --git a/test/perf/passt_udp b/test/perf/passt_udp
> index 80731d1..6bd86ff 100644
> --- a/test/perf/passt_udp
> +++ b/test/perf/passt_udp
> @@ -37,7 +37,7 @@ hout	FREQ [ -n "__FREQ_CPUFREQ__" ] && echo __FREQ_CPUFREQ__ || echo __FREQ_PROC
>  
>  set	THREADS 4
>  set	STREAMS 1
> -set	TIME 30
> +set	TIME 10
>  set	OPTS -u -i1 -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 cc21075..44c5e54 100644
> --- a/test/perf/pasta_tcp
> +++ b/test/perf/pasta_tcp
> @@ -23,7 +23,7 @@ ns	/sbin/sysctl -w net.ipv4.tcp_timestamps=0
>  
>  set	THREADS 2
>  set	STREAMS 2
> -set	TIME 30
> +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
>  
> diff --git a/test/perf/pasta_udp b/test/perf/pasta_udp
> index ae898b1..abb88b0 100644
> --- a/test/perf/pasta_udp
> +++ b/test/perf/pasta_udp
> @@ -22,7 +22,7 @@ hout	FREQ [ -n "__FREQ_CPUFREQ__" ] && echo __FREQ_CPUFREQ__ || echo __FREQ_PROC
>  
>  set	THREADS 1
>  set	STREAMS 4
> -set	TIME 30
> +set	TIME 10
>  set	OPTS -u -i1 -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 --]

  reply	other threads:[~2022-09-22  6:29 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 [this message]
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

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=YywAwL4PK71jGl+q@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).