From: Qais Yousef <qyousef@layalina.io>
To: John Stultz <jstultz@google.com>
Cc: Qais Yousef <qais.yousef@arm.com>,
LKML <linux-kernel@vger.kernel.org>,
John Dias <joaodias@google.com>,
Connor O'Brien <connoro@google.com>,
Rick Yiu <rickyiu@google.com>, John Kacur <jkacur@redhat.com>,
Chris Redpath <chris.redpath@arm.com>,
Abhijeet Dharmapurikar <adharmap@quicinc.com>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>,
Juri Lelli <juri.lelli@redhat.com>,
Vincent Guittot <vincent.guittot@linaro.org>,
Dietmar Eggemann <dietmar.eggemann@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Thomas Gleixner <tglx@linutronix.de>,
kernel-team@android.com, "J . Avila" <elavila@google.com>
Subject: Re: [RFC PATCH v4 3/3] softirq: defer softirq processing to ksoftirqd if CPU is busy with RT
Date: Wed, 19 Oct 2022 12:01:43 +0100 [thread overview]
Message-ID: <20221019110143.m4romocqmprkekzw@airbuntu> (raw)
In-Reply-To: <CANDhNCo6M8NdLemjhA2sQ941agU+LQHxhRKAVMvr-qg9mQV51Q@mail.gmail.com>
(note the change in email)
On 10/17/22 17:04, John Stultz wrote:
> On Mon, Oct 17, 2022 at 7:45 AM Qais Yousef <qais.yousef@arm.com> wrote:
> > This time I paid attention to the average as the best case number for vanilla
> > kernel is better:
> >
> > | vanilla | with softirq patches v4 |
> > -------------------|--------------------|--------------------------|
> > | #1 | #2 | #3 | #1 | #2 | #3 |
> > -------------------|------|------|------|--------|--------|--------|
> > t0 avg delay (us) |31.59 |22.94 |26.50 | 31.81 | 33.57 | 34.90 |
> > t1 avg delay (us) |16.85 |16.32 |37.16 | 29.05 | 30.51 | 31.65 |
> > t2 avg delay (us) |25.34 |32.12 |17.40 | 26.76 | 28.28 | 28.56 |
> >
> > It shows that we largely hover around 30us with the patches compared to 16-26us
> > being more prevalent for vanilla kernels.
> >
> > I am not sure I can draw a concrete conclusion from these numbers. It seems
> > I need to run longer than 4 hours to hit the worst case scenario every run on
> > the vanilla kernel. There's an indication that the worst case scenario is
> > harder to hit, and it looks there's a hit on the average delay.
>
> Thanks so much for running these tests and capturing these detailed numbers!
>
> I'll have to look further into the average case going up here.
>
> > I'm losing access to this system from today. I think I'll wait for more
> > feedback on this RFC; and do another round of testing for longer periods of
> > time once there's clearer sense this is indeed the direction we'll be going
> > for.
>
> Do you mind sending me the script you used to run the test, and I'll
> try to reproduce on some x86 hardware locally?
I ran that in a personal CI setup. I basically do the following 3 in parallel
'scripts':
cyclictest.sh [1]:
cyclictest -t 3 -p 99 -D 3600 -i 1000 --json=cyclictest.json
iperf.sh [2]:
iperf -s -D
iperf -c localhost -u -b 10g -t 3600 -i 1 -P 3
dd.sh [3]:
while true
do
cyclictest_running=`ps -e | grep cyclictest || true`
if [ "x$cyclictest_running" == "x" ]; then
break
fi
#
# Run dd
#
file="/tmp/myci.dd.file"
for i in $(seq 3)
do
dd if=/dev/zero of=$file.$i bs=1M count=2048 &
done
wait
rm -f $file*
sleep 3
done
[1] https://github.com/qais-yousef/myci-sched-tests/blob/dev/vars/run_cyclictest.groovy
[2] https://github.com/qais-yousef/myci-sched-tests/blob/dev/vars/run_iperf_parallel.groovy
[3] https://github.com/qais-yousef/myci-sched-tests/blob/dev/vars/run_dd_parallel.groovy
Cheers
--
Qais Yousef
prev parent reply other threads:[~2022-10-19 11:38 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-03 23:20 [RFC PATCH v4 0/3] Softirq -rt Optimizations John Stultz
2022-10-03 23:20 ` [RFC PATCH v4 1/3] softirq: Add generic accessor to percpu softirq_pending data John Stultz
2022-10-03 23:20 ` [RFC PATCH v4 2/3] sched: Avoid placing RT threads on cores handling long softirqs John Stultz
[not found] ` <20221004013611.1822-1-hdanton@sina.com>
2022-10-04 2:29 ` John Stultz
[not found] ` <20221005002149.1876-1-hdanton@sina.com>
2022-10-05 1:13 ` John Stultz
[not found] ` <20221005060155.1571-1-hdanton@sina.com>
2022-10-10 15:42 ` Qais Yousef
[not found] ` <20221011111846.284-1-hdanton@sina.com>
2022-10-12 14:10 ` Qais Yousef
2022-10-17 12:40 ` [PATCH RFC " Alexander Gordeev
2022-10-18 3:42 ` John Stultz
2022-10-18 3:59 ` John Stultz
2022-10-18 5:32 ` John Stultz
2022-10-19 9:11 ` Alexander Gordeev
2022-10-19 22:09 ` John Stultz
2022-10-20 0:15 ` Qais Yousef
2022-10-20 12:47 ` Alexander Gordeev
2022-10-22 18:34 ` Joel Fernandes
2022-10-23 7:45 ` Alexander Gordeev
2022-11-15 7:08 ` John Stultz
2022-11-15 12:55 ` Alexander Gordeev
2022-10-19 11:23 ` Qais Yousef
2022-10-22 18:28 ` [RFC PATCH " Joel Fernandes
2022-11-15 21:36 ` John Stultz
2022-10-03 23:20 ` [RFC PATCH v4 3/3] softirq: defer softirq processing to ksoftirqd if CPU is busy with RT John Stultz
2022-10-04 10:45 ` David Laight
2022-10-04 19:19 ` John Stultz
2022-10-10 16:09 ` Qais Yousef
2022-10-17 14:44 ` Qais Yousef
2022-10-18 0:04 ` John Stultz
2022-10-19 11:01 ` Qais Yousef [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=20221019110143.m4romocqmprkekzw@airbuntu \
--to=qyousef@layalina.io \
--cc=adharmap@quicinc.com \
--cc=chris.redpath@arm.com \
--cc=connoro@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=elavila@google.com \
--cc=jkacur@redhat.com \
--cc=joaodias@google.com \
--cc=jstultz@google.com \
--cc=juri.lelli@redhat.com \
--cc=kernel-team@android.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=qais.yousef@arm.com \
--cc=rickyiu@google.com \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
--cc=vincent.guittot@linaro.org \
/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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®