Commit 606982d0 authored by Andrew Morton's avatar Andrew Morton Committed by james toy

These functions forgot to run timer_stats_timer_clear_start_info(). It's

unobvious what effect this has and whether it matters much - we won't be
printing it out anyway if the timer's detached.

Untested, just an Ingo trollpatch.

Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent b5bbcf01
...@@ -882,6 +882,7 @@ int try_to_del_timer_sync(struct timer_list *timer) ...@@ -882,6 +882,7 @@ int try_to_del_timer_sync(struct timer_list *timer)
if (base->running_timer == timer) if (base->running_timer == timer)
goto out; goto out;
timer_stats_timer_clear_start_info(timer);
ret = 0; ret = 0;
if (timer_pending(timer)) { if (timer_pending(timer)) {
detach_timer(timer, 1); detach_timer(timer, 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment