lkml.org 
[lkml]   [2018]   [Mar]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [RFT][PATCH v5 0/7] sched/cpuidle: Idle loop rework
On Mon, Mar 19, 2018 at 12:36:52PM +0100, Rafael J. Wysocki wrote:

> > My brain is just not willing to understand how that work this morning.
> > Also it sounds really dodgy.
>
> Well, I guess I can't really explain it better. :-)

I'll try again once my brain decides to wake up.

> The reason why this works better than the original v5 is because of
> how menu_update() works AFAICS.

I'll have to go read that first then.

> > + if (!tick_nohz_idle_got_tick()) {
> > + /*
> > + * Give the governor an opportunity to reflect on the outcome
> > + */
> > + cpuidle_reflect(dev, entered_state);
> > + }
>
> So I guess the idea is to only invoke menu_update() if the CPU was not
> woken up by the tick, right?
>
> I would check that in menu_reflect() (as the problem is really with
> the menu governor and not general).
>
> Also, do we really want to always disregard wakeups from the tick?
>
> Say, if the governor predicted idle duration of a few microseconds and
> the CPU is woken up by the tick, we want it to realize that it was way
> off, don't we?

The way I look at it is that we should always disregard the tick for
wakeups. Such that we can make an unbiased decision on disabling it.

If the above simple method is the best way to achieve that, probably
not. Because now we 'loose' the idle time, instead of accumulating it.

> > }
> >
> > exit_idle:
> > --- a/kernel/time/tick-sched.c
> > +++ b/kernel/time/tick-sched.c
> > @@ -996,6 +996,21 @@ void tick_nohz_idle_enter(void)
> > local_irq_enable();
> > }
> >
> > +bool tick_nohz_idle_got_tick(void)
> > +{
> > + struct tick_sched *ts;
> > + bool got_tick = false;
> > +
> > + ts = this_cpu_ptr(&tick_cpu_sched);
> > +
> > + if (ts->inidle == 2) {
> > + got_tick = true;
> > + ts->inidle = 1;
> > + }
> > +
> > + return got_tick;
> > +}
>
> Looks simple enough. :-)

Yes, the obvious fail is that it will not be able to tell if it was the
only wakeup source. Suppose two interrupts fire, the tick and something
else, the above will disregard the idle time, even though it maybe
should not have.

> > +
> > /**
> > * tick_nohz_irq_exit - update next tick event from interrupt exit
> > *
> > @@ -1142,6 +1157,9 @@ static void tick_nohz_handler(struct clo
> > struct pt_regs *regs = get_irq_regs();
> > ktime_t now = ktime_get();
> >
> > + if (ts->inidle)
> > + ts->inidle = 2;
> > +
> > dev->next_event = KTIME_MAX;
> >
> > tick_sched_do_timer(now);
> > @@ -1239,6 +1257,9 @@ static enum hrtimer_restart tick_sched_t
> > struct pt_regs *regs = get_irq_regs();
> > ktime_t now = ktime_get();
> >
> > + if (ts->inidle)
> > + ts->inidle = 2;
> > +
>
> Why do we need to do it here?
>
> > tick_sched_do_timer(now);
> >
> > /*

Both are tick handlers, one low-res one high-res. The idea it that the
tick flips the ts->inidle thing from 1->2, which then allows *got_tick()
to detect if we had a tick for wakeup.

\
 
 \ /
  Last update: 2018-03-19 13:32    [W:0.083 / U:0.336 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site