From: Tao Zhou <tao.zhou@linux.dev>
To: Vineeth Pillai <vineethrp@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>,
Josh Don <joshdon@google.com>, 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>,
Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
Daniel Bristot de Oliveira <bristot@redhat.com>,
Joel Fernandes <joel@joelfernandes.org>,
linux-kernel@vger.kernel.org, tao.zhou@linux.dev
Subject: Re: [PATCH] sched/core: fix pick_next_task 'max' tracking
Date: Tue, 24 Aug 2021 06:57:46 +0800 [thread overview]
Message-ID: <YSQn6upBfn4PFlo3@geo.homenetwork> (raw)
In-Reply-To: <CAOBnfPjH=y3Lk7AukLeG4mNcJnf5cgV260=PZCbF9u69-T+Q6Q@mail.gmail.com>
Hi Vineeth,
On Mon, Aug 23, 2021 at 04:25:28PM -0400, Vineeth Pillai wrote:
> Hi Peter,
>
>
> > > Here, we should have instead updated 'max' when picking for SMT-1. Note
> > > that this code would eventually have righted itself, since the retry
> > > loop would re-pick p2, and update 'max' accordingly. However, this patch
> > > avoids the extra round-trip.
> >
> > Going with the observation Tao made; how about we rewrite the whole lot
> > to not be mind-bending complicated :-)
> >
> > How's this? It seems to build and pass the core-sched selftest thingy
> > (so it must be perfect, right? :-)
> >
> Nice, the code is much simpler now :-). A minor suggestion down..
>
> > - for_each_cpu(i, smt_mask) {
> > - struct rq *rq_i = cpu_rq(i);
> > -
> > + /*
> > + * For each thread: do the regular task pick and find the max prio task
> > + * amongst them.
> > + *
> > + * Tie-break prio towards the current CPU
> > + */
> > + for_each_cpu_wrap(i, smt_mask, cpu) {
> > + rq_i = cpu_rq(i);
> > rq_i->core_pick = NULL;
> >
> > if (i != cpu)
> > update_rq_clock(rq_i);
> > +
> > + for_each_class(class) {
> > + p = rq_i->core_temp = class->pick_task(rq_i);
> I think we can use core_pick to store the pick here and core_temp
> might not be required. What do you feel?
You're right.
The @core_temp load the class pick, the @core_pick is the final
pick(class or cookie). Using @core_pick to store class pick first
and then the final pick is right and save the bytes) but just a
little not clarity from my end :-)
> > + if (p)
> > + break;
> > + }
> > +
> > + if (!max || prio_less(max, p, fi_before))
> > + max = p;
>
>
> Thanks,
> Vineeth
Thanks,
Tao
next prev parent reply other threads:[~2021-08-23 22:56 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-18 0:56 [PATCH] sched/core: fix pick_next_task 'max' tracking Josh Don
2021-08-18 4:35 ` Tao Zhou
2021-08-18 15:18 ` Tao Zhou
2021-08-23 11:16 ` Peter Zijlstra
2021-08-23 15:38 ` Tao Zhou
2021-08-23 20:25 ` Vineeth Pillai
2021-08-23 22:57 ` Tao Zhou [this message]
2021-08-24 9:03 ` Peter Zijlstra
2021-08-24 9:38 ` [PATCH] sched/core: Simplify core-wide task selection Peter Zijlstra
2021-08-24 12:15 ` Tao Zhou
2021-08-24 17:40 ` Josh Don
2021-08-24 18:28 ` Vineeth Pillai
2021-09-09 11:18 ` [tip: sched/core] " tip-bot2 for Peter Zijlstra
2021-10-05 14:12 ` tip-bot2 for Peter Zijlstra
2021-08-23 23:24 ` [PATCH] sched/core: fix pick_next_task 'max' tracking Josh Don
2021-08-24 3:01 ` Tao Zhou
2021-08-24 8:55 ` Peter Zijlstra
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=YSQn6upBfn4PFlo3@geo.homenetwork \
--to=tao.zhou@linux.dev \
--cc=bristot@redhat.com \
--cc=bsegall@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=joel@joelfernandes.org \
--cc=joshdon@google.com \
--cc=juri.lelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=vincent.guittot@linaro.org \
--cc=vineethrp@gmail.com \
/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