diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-05-26 18:50:31 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-06-19 09:18:27 -0400 |
commit | c74441a17eb975b604e339ca6c11b9ab9aaca11f (patch) | |
tree | 4f58ae369bac98352a65a9c47f4c83ba3ffd9b05 /kernel/time/timer.c | |
parent | 0eeda71bc30d74f66f8231f45621d5ace3419186 (diff) |
timer: Stats: Simplify the flags handling
Simplify the handling of the flag storage for the timer statistics. No
intermediate storage anymore. Just hand over the flags field.
I left the printout of 'deferrable' for now because changing this
would be an ABI update and I have no idea how strong people feel about
that. OTOH, I wonder whether we should kill the whole timer stats
stuff because all of that information can be retrieved via ftrace/perf
as well.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul McKenney <paulmck@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Joonwoo Park <joonwoop@codeaurora.org>
Cc: Wenbo Wang <wenbo.wang@memblaze.com>
Link: http://lkml.kernel.org/r/20150526224512.046626248@linutronix.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/time/timer.c')
-rw-r--r-- | kernel/time/timer.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/kernel/time/timer.c b/kernel/time/timer.c index 1540af9f62eb..3398d93c74a7 100644 --- a/kernel/time/timer.c +++ b/kernel/time/timer.c | |||
@@ -404,15 +404,12 @@ void __timer_stats_timer_set_start_info(struct timer_list *timer, void *addr) | |||
404 | 404 | ||
405 | static void timer_stats_account_timer(struct timer_list *timer) | 405 | static void timer_stats_account_timer(struct timer_list *timer) |
406 | { | 406 | { |
407 | unsigned int flag = 0; | ||
408 | |||
409 | if (likely(!timer->start_site)) | 407 | if (likely(!timer->start_site)) |
410 | return; | 408 | return; |
411 | if (unlikely(timer->flags & TIMER_DEFERRABLE)) | ||
412 | flag |= TIMER_STATS_FLAG_DEFERRABLE; | ||
413 | 409 | ||
414 | timer_stats_update_stats(timer, timer->start_pid, timer->start_site, | 410 | timer_stats_update_stats(timer, timer->start_pid, timer->start_site, |
415 | timer->function, timer->start_comm, flag); | 411 | timer->function, timer->start_comm, |
412 | timer->flags); | ||
416 | } | 413 | } |
417 | 414 | ||
418 | #else | 415 | #else |