From: Thomas Gleixner Date: Fri, 22 Dec 2017 14:51:14 +0000 (+0100) Subject: timers: Invoke timer_start_debug() where it makes sense X-Git-Tag: MMI-PSA29.97-13-9~4100^2~15 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8f1aa64ab08621cc3d2b1600ab80da5d3128abb6;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git timers: Invoke timer_start_debug() where it makes sense commit fd45bb77ad682be728d1002431d77b8c73342836 upstream. 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: 500462a9de65 ("timers: Switch to a non-cascading wheel") Signed-off-by: Thomas Gleixner Cc: Peter Zijlstra Cc: Frederic Weisbecker Cc: Sebastian Siewior Cc: rt@linutronix.de Cc: Paul McKenney Cc: Anna-Maria Gleixner Link: https://lkml.kernel.org/r/20171222145337.792907137@linutronix.de Signed-off-by: Greg Kroah-Hartman --- diff --git a/kernel/time/timer.c b/kernel/time/timer.c index fdfaf4f3bcfa..a4d095e1010e 100644 --- a/kernel/time/timer.c +++ b/kernel/time/timer.c @@ -982,8 +982,6 @@ __mod_timer(struct timer_list *timer, unsigned long expires, bool pending_only) if (!ret && pending_only) goto out_unlock; - debug_activate(timer, expires); - new_base = get_target_base(base, timer->flags); if (base != new_base) { @@ -1007,6 +1005,8 @@ __mod_timer(struct timer_list *timer, unsigned long expires, bool pending_only) } } + debug_activate(timer, expires); + timer->expires = expires; /* * If 'idx' was calculated above and the base time did not advance