diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2012-01-24 12:59:43 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-02-15 09:23:09 -0500 |
commit | 15f827be93928890bba965bc175caee50c4406d2 (patch) | |
tree | f858d834563a8f47327fbd4792dcf3b5499901b9 /kernel/time | |
parent | 430ee8819553f66fe00e36f676a45886d76e7e8b (diff) |
nohz: Remove ts->Einidle checks before restarting the tick
ts->inidle is set by tick_nohz_idle_enter() and unset by
tick_nohz_idle_exit(). However these two calls are assumed
to be always paired. This means that by the time we call
tick_nohz_idle_exit(), ts->inidle is supposed to be always
set to 1.
Remove the checks for ts->inidle in tick_nohz_idle_exit().
This simplifies a bit the code and improves its debuggability
(ie: ensure the call is paired with a tick_nohz_idle_enter()
call).
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Reviewed-by: Yong Zhang <yong.zhang0@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Ingo Molnar <mingo@elte.hu>
Link: http://lkml.kernel.org/r/1327427984-23282-2-git-send-email-fweisbec@gmail.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/time')
-rw-r--r-- | kernel/time/tick-sched.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index 8cfffd9d9ce9..3526038f2836 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c | |||
@@ -558,20 +558,21 @@ void tick_nohz_idle_exit(void) | |||
558 | 558 | ||
559 | local_irq_disable(); | 559 | local_irq_disable(); |
560 | 560 | ||
561 | if (ts->idle_active || (ts->inidle && ts->tick_stopped)) | 561 | WARN_ON_ONCE(!ts->inidle); |
562 | |||
563 | ts->inidle = 0; | ||
564 | |||
565 | if (ts->idle_active || ts->tick_stopped) | ||
562 | now = ktime_get(); | 566 | now = ktime_get(); |
563 | 567 | ||
564 | if (ts->idle_active) | 568 | if (ts->idle_active) |
565 | tick_nohz_stop_idle(cpu, now); | 569 | tick_nohz_stop_idle(cpu, now); |
566 | 570 | ||
567 | if (!ts->inidle || !ts->tick_stopped) { | 571 | if (!ts->tick_stopped) { |
568 | ts->inidle = 0; | ||
569 | local_irq_enable(); | 572 | local_irq_enable(); |
570 | return; | 573 | return; |
571 | } | 574 | } |
572 | 575 | ||
573 | ts->inidle = 0; | ||
574 | |||
575 | /* Update jiffies first */ | 576 | /* Update jiffies first */ |
576 | select_nohz_load_balancer(0); | 577 | select_nohz_load_balancer(0); |
577 | tick_do_update_jiffies64(now); | 578 | tick_do_update_jiffies64(now); |