The wheel clock is stale when a cpu goes into a long idle sleep. This has the side effect, that timers which are queued end up in the outer wheel levels. That results in coarser granularity. To solve this, we keep track of the idle state and forward the wheel clock whenever it's possible. Signed-off-by: Thomas Gleixner --- kernel/time/tick-internal.h | 1 kernel/time/tick-sched.c | 13 ++++ kernel/time/timer.c | 120 +++++++++++++++++++++++++++++++++++--------- 3 files changed, 111 insertions(+), 23 deletions(-) --- a/kernel/time/tick-internal.h +++ b/kernel/time/tick-internal.h @@ -164,3 +164,4 @@ static inline void timers_update_migrati DECLARE_PER_CPU(struct hrtimer_cpu_base, hrtimer_bases); extern u64 get_next_timer_interrupt(unsigned long basej, u64 basem); +void timer_clear_idle(void); --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c @@ -700,6 +700,12 @@ static ktime_t tick_nohz_stop_sched_tick delta = next_tick - basemono; if (delta <= (u64)TICK_NSEC) { tick.tv64 = 0; + + /* + * Tell the timer code that the base is not idle, i.e. undo + * the effect of get_next_timer_interrupt(). + */ + timer_clear_idle(); /* * We've not stopped the tick yet, and there's a timer in the * next period, so no point in stopping it either, bail. @@ -809,6 +815,12 @@ static void tick_nohz_restart_sched_tick tick_do_update_jiffies64(now); cpu_load_update_nohz_stop(); + /* + * Clear the timer idle flag, so we avoid IPIs on remote queueing and + * the clock forward checks in the enqueue path. + */ + timer_clear_idle(); + calc_load_exit_idle(); touch_softlockup_watchdog_sched(); /* @@ -1025,6 +1037,7 @@ void tick_nohz_idle_exit(void) tick_nohz_stop_idle(ts, now); if (ts->tick_stopped) { + timer_clear_idle(); tick_nohz_restart_sched_tick(ts, now); tick_nohz_account_idle_ticks(ts); } --- a/kernel/time/timer.c +++ b/kernel/time/timer.c @@ -181,9 +181,11 @@ struct timer_base { spinlock_t lock; struct timer_list *running_timer; unsigned long clk; + unsigned long next_expiry; unsigned int cpu; bool migration_enabled; bool nohz_active; + bool is_idle; DECLARE_BITMAP(pending_map, WHEEL_SIZE); struct hlist_head vectors[WHEEL_SIZE]; } ____cacheline_aligned; @@ -498,23 +500,27 @@ static void internal_add_timer(struct ti __internal_add_timer(base, timer); /* - * Check whether the other CPU is in dynticks mode and needs - * to be triggered to reevaluate the timer wheel. We are - * protected against the other CPU fiddling with the timer by - * holding the timer base lock. This also makes sure that a - * CPU on the way to stop its tick can not evaluate the timer - * wheel. - * - * Spare the IPI for deferrable timers on idle targets though. - * The next busy ticks will take care of it. Except full dynticks - * require special care against races with idle_cpu(), lets deal - * with that later. - */ - if (IS_ENABLED(CONFIG_NO_HZ_COMMON) && base->nohz_active) { - if (!(timer->flags & TIMER_DEFERRABLE) || - tick_nohz_full_cpu(base->cpu)) - wake_up_nohz_cpu(base->cpu); - } + * We might have to IPI the remote CPU if the base is idle and the + * timer is not deferrable. If the other cpu is on the way to idle + * then it can't set base->is_idle as we hold base lock. + */ + if (!IS_ENABLED(CONFIG_NO_HZ_COMMON) || !base->is_idle || + (timer->flags & TIMER_DEFERRABLE)) + return; + + /* Check whether this is the new first expiring timer */ + if (time_after_eq(timer->expires, base->next_expiry)) + return; + base->next_expiry = timer->expires; + + /* + * Check whether the other CPU is in dynticks mode and needs to be + * triggered to reevaluate the timer wheel. We are protected against + * the other CPU fiddling with the timer by holding the timer base + * lock. + */ + if (tick_nohz_full_cpu(base->cpu)) + wake_up_nohz_cpu(base->cpu); } #ifdef CONFIG_TIMER_STATS @@ -827,16 +833,50 @@ static inline struct timer_base *get_tim return get_timer_cpu_base(tflags, tflags & TIMER_BASEMASK); } -static inline struct timer_base *get_target_base(struct timer_base *base, - unsigned tflags) -{ #ifdef CONFIG_NO_HZ_COMMON +static inline struct timer_base *__get_target_base(struct timer_base *base, + unsigned tflags) +{ if ((tflags & TIMER_PINNED) || !base->migration_enabled) return get_timer_this_cpu_base(tflags); return get_timer_cpu_base(tflags, get_nohz_timer_target()); +} + +static inline void forward_timer_base(struct timer_base *base) +{ + /* + * We only forward the base when it's idle and we have a delta between + * base clock and jiffies. + */ + if (!base->is_idle || (jiffies - base->clk) < 2) + return; + + /* + * If the next expiry value is >= jiffies, then we fast forward to + * jiffies otherwise we forward to the next expiry value. + */ + if (time_after_eq(base->next_expiry, jiffies)) + base->clk = jiffies; + else + base->clk = base->next_expiry; +} #else +static inline struct timer_base *__get_target_base(struct timer_base *base, + unsigned tflags) +{ return get_timer_this_cpu_base(tflags); +} + +static inline void forward_timer_base(struct timer_base *base) { } #endif + +static inline struct timer_base *get_target_base(struct timer_base *base, + unsigned tflags) +{ + struct timer_base *target = __get_target_base(base, tflags); + + forward_timer_base(target); + return target; } /* @@ -1255,6 +1295,7 @@ static int __collect_expired_timers(stru /* Is it time to look at the next level? */ if (clock & LVL_CLK_MASK) return levels; + /* Shift clock for the next level granularity */ clock >>= LVL_CLK_SHIFT; } @@ -1426,16 +1467,49 @@ u64 get_next_timer_interrupt(unsigned lo spin_lock(&base->lock); nextevt = __next_timer_interrupt(base); - spin_unlock(&base->lock); + base->next_expiry = nextevt; + /* + * We have a fresh next event. Check whether we can forward the base. + */ + if (time_after_eq(nextevt, jiffies)) + base->clk = jiffies; + else if (time_after(nextevt, base->clk)) + base->clk = nextevt; - if (time_before_eq(nextevt, basej)) + if (time_before_eq(nextevt, basej)) { expires = basem; - else + base->is_idle = false; + } else { expires = basem + (nextevt - basej) * TICK_NSEC; + /* + * If we expect to sleep more than a tick, mark the base idle. + */ + if ((expires - basem) > TICK_NSEC) + base->is_idle = true; + } + spin_unlock(&base->lock); return cmp_next_hrtimer_event(basem, expires); } +/** + * timer_clear_idle - Clear the idle state of the timer base + * + * Called with interrupts disabled + */ +void timer_clear_idle(void) +{ + struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]); + + /* + * We do this unlocked. The worst outcome is a remote enqueue sending + * a pointless IPI, but taking the lock would just make the window for + * sending the IPI a few instructions smaller for the cost of taking + * the lock in the exit from idle path. + */ + base->is_idle = false; +} + static int collect_expired_timers(struct timer_base *base, struct hlist_head *heads) {