]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
nohz: Avoid tick's double reprogramming in highres mode
authorViresh Kumar <viresh.kumar@linaro.org>
Thu, 12 Jun 2014 10:54:41 +0000 (16:24 +0530)
committerFrederic Weisbecker <frederic@kernel.org>
Fri, 22 Aug 2014 16:47:35 +0000 (18:47 +0200)
In highres mode, the tick reschedules itself unconditionally to the
next jiffies.

However while this clock reprogramming is relevant when the tick is
in periodic mode, it's not that interesting when we run in dynticks mode
because irq exit is likely going to overwrite the next tick to some
randomly deferred future.

So lets just get rid of this tick self rescheduling in dynticks mode.
This way we can avoid some clockevents double write in favourable
scenarios like when we stop the tick completely in idle while no other
hrtimer is pending.

Suggested-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
kernel/time/tick-sched.c

index 153870a913505ef02e59a9daec17cab689067d91..cc0a5b6f741b62171eb04a072e347b1a7e595dac 100644 (file)
@@ -1099,6 +1099,10 @@ static enum hrtimer_restart tick_sched_timer(struct hrtimer *timer)
        if (regs)
                tick_sched_handle(ts, regs);
 
+       /* No need to reprogram if we are in idle or full dynticks mode */
+       if (unlikely(ts->tick_stopped))
+               return HRTIMER_NORESTART;
+
        hrtimer_forward(timer, now, tick_period);
 
        return HRTIMER_RESTART;