Re: [PATCH 1/7] sched: Fix pick_next_task() vs change pattern race

From: Peter Zijlstra
Date: Fri Nov 08 2019 - 15:49:55 EST


On Fri, Nov 08, 2019 at 04:05:25PM +0000, Valentin Schneider wrote:
> On 08/11/2019 13:15, Peter Zijlstra wrote:
> > +static int balance_rt(struct rq *rq, struct task_struct *p, struct rq_flags *rf)
> > +{
> > + if (!on_rt_rq(&p->rt) && need_pull_rt_task(rq, p)) {
> > + /*
> > + * This is OK, because current is on_cpu, which avoids it being
> > + * picked for load-balance and preemption/IRQs are still
> > + * disabled avoiding further scheduler activity on it and we've
> > + * not yet started the picking loop.
> > + */
> > + rq_unpin_lock(rq, rf);
> > + pull_rt_task(rq);
> > + rq_repin_lock(rq, rf);
> > + }
> > +
> > + return sched_stop_runnable(rq) || sched_dl_runnable(rq) || sched_rt_runnable(rq);
>
> So we already have some dependencies on the class ordering (e.g. fair->idle),
> but I'm wondering if would it make sense to have these runnable functions be
> defined as sched_class callbacks?
>
> e.g.
>
> rt_sched_class.runnable = rt_runnable
>
> w/ rt_runnable() just being a non-inlined sched_rt_runnable() you define
> further down the patch (or a wrapper to it). The balance return pattern could
> then become:
>
> for_class_range(class, sched_class_highest, rt_sched_class->next)
> if (class->runnable(rq))
> return true;
> return false;
>
> (and replace rt_sched_class by whatever class' balance callback this is)
>
> It's a bit neater, but I'm pretty sure it's going to run worse :/
> The only unaffected one would be fair, since newidle_balance() already does
> that "for free".

Yeah, it'll be pretty terrible :/

That said, I might have some clues on how to get rid of all the indirect
calls, but I need to play around a bit. It'll be invasive though :/
(like that ever stopped me).