Make sure that the clockevent device is never programmed to a deadline
later than the tick.

Signed-off-by: Frederic Weisbecker <[email protected]>
Cc: Tim Wright <[email protected]>
Cc: Pavel Machek <[email protected]>
Cc: James Hartsock <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Rik van Riel <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
---
 kernel/time/tick-sched.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
index 64c97fc..d212bb6 100644
--- a/kernel/time/tick-sched.c
+++ b/kernel/time/tick-sched.c
@@ -771,8 +771,13 @@ static ktime_t tick_nohz_stop_sched_tick(struct tick_sched 
*ts,
        tick = expires;
 
        /* Skip reprogram of event if its not changed */
-       if (ts->tick_stopped && (expires == dev->next_event))
-               goto out;
+       if (ts->tick_stopped) {
+               if (hrtimer_active(&ts->sched_timer))
+                       WARN_ON_ONCE(hrtimer_get_expires(&ts->sched_timer) < 
dev->next_event);
+
+               if (expires == dev->next_event)
+                       goto out;
+       }
 
        /*
         * nohz_stop_sched_tick can be called several times before
-- 
2.7.4

Reply via email to