lkml.org 
[lkml]   [2015]   [Nov]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [RFC PATCH v2 3/3] sched: introduce synchronized idle injection
On Tue, 10 Nov 2015 15:58:23 +0100
Peter Zijlstra <peterz@infradead.org> wrote:

> On Tue, Nov 10, 2015 at 06:01:16AM -0800, Jacob Pan wrote:
> > On Tue, 10 Nov 2015 14:23:24 +0100
> > Peter Zijlstra <peterz@infradead.org> wrote:
>
> > > It looks like what you want is:
> > >
> > > hrtimer_forward(hrt, period);
> > >
> > > unconditionally.
>
> > In the ideal world yes. But my thinking was that timers may not be
> > so accurate to deliver interrupts, over the time the timeout error
> > may accumulate so that eventually timers will be out of sync.
>
> Timers have a global time base. Even if individual deliveries have an
> error, there is no accumulated error.
>
great! I can get rid of the ktime_roundup(). It seems to work with
now = hrtimer_cb_get_time(hrt);
if (status)
hrtimer_forward(hrt, now, ms_to_ktime(inject_interval));
else
hrtimer_forward(hrt, now, ms_to_ktime(duration));

The downside is that we need to restart the timers every time if
user were to change injection parameters, i.e. duration and percent.
Or do locking which might be too expensive. In the previous approach, it
will naturally catch up the parameter change.


\
 
 \ /
  Last update: 2015-11-10 18:01    [W:0.055 / U:1.084 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site