Skip to content

Commit fd45bb7

Browse files
committed
timers: Invoke timer_start_debug() where it makes sense
The timer start debug function is called before the proper timer base is set. As a consequence the trace data contains the stale CPU and flags values. Call the debug function after setting the new base and flags. Fixes: 500462a ("timers: Switch to a non-cascading wheel") Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Sebastian Siewior <bigeasy@linutronix.de> Cc: stable@vger.kernel.org Cc: rt@linutronix.de Cc: Paul McKenney <paulmck@linux.vnet.ibm.com> Cc: Anna-Maria Gleixner <anna-maria@linutronix.de> Link: https://lkml.kernel.org/r/20171222145337.792907137@linutronix.de
1 parent 5d62c18 commit fd45bb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kernel/time/timer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,8 +1007,6 @@ __mod_timer(struct timer_list *timer, unsigned long expires, unsigned int option
10071007
if (!ret && (options & MOD_TIMER_PENDING_ONLY))
10081008
goto out_unlock;
10091009

1010-
debug_activate(timer, expires);
1011-
10121010
new_base = get_target_base(base, timer->flags);
10131011

10141012
if (base != new_base) {
@@ -1032,6 +1030,8 @@ __mod_timer(struct timer_list *timer, unsigned long expires, unsigned int option
10321030
}
10331031
}
10341032

1033+
debug_activate(timer, expires);
1034+
10351035
timer->expires = expires;
10361036
/*
10371037
* If 'idx' was calculated above and the base time did not advance

0 commit comments

Comments
 (0)