]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
tick-sched: Check tick_nohz_enabled in tick_nohz_switch_to_nohz()
authorViresh Kumar <viresh.kumar@linaro.org>
Tue, 15 Apr 2014 05:24:41 +0000 (10:54 +0530)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 15 Apr 2014 18:26:58 +0000 (20:26 +0200)
Since commit d689fe222 (NOHZ: Check for nohz active instead of nohz
enabled) the tick_nohz_switch_to_nohz() function returns because it
checks for the tick_nohz_active flag. This can't be set, because the
function itself sets it.

Undo the change in tick_nohz_switch_to_nohz().

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: linaro-kernel@lists.linaro.org
Cc: fweisbec@gmail.com
Cc: Arvind.Chauhan@arm.com
Cc: linaro-networking@linaro.org
Cc: <stable@vger.kernel.org> # 3.13+
Link: http://lkml.kernel.org/r/40939c05f2d65d781b92b20302b02243d0654224.1397537987.git.viresh.kumar@linaro.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/time/tick-sched.c

index e947d968c5b57f67985a0b559ce2f13a4cd84a7e..6558b7ac112d2e1293886721a22d020ea78a3e4d 100644 (file)
@@ -970,7 +970,7 @@ static void tick_nohz_switch_to_nohz(void)
        struct tick_sched *ts = &__get_cpu_var(tick_cpu_sched);
        ktime_t next;
 
-       if (!tick_nohz_active)
+       if (!tick_nohz_enabled)
                return;
 
        local_irq_disable();