aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/hrtimer.h43
-rw-r--r--kernel/hrtimer.c24
2 files changed, 20 insertions, 47 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h
index 040b6796ab4d..af634e95871d 100644
--- a/include/linux/hrtimer.h
+++ b/include/linux/hrtimer.h
@@ -440,47 +440,4 @@ extern u64 ktime_divns(const ktime_t kt, s64 div);
440/* Show pending timers: */ 440/* Show pending timers: */
441extern void sysrq_timer_list_show(void); 441extern void sysrq_timer_list_show(void);
442 442
443/*
444 * Timer-statistics info:
445 */
446#ifdef CONFIG_TIMER_STATS
447
448extern void timer_stats_update_stats(void *timer, pid_t pid, void *startf,
449 void *timerf, char *comm,
450 unsigned int timer_flag);
451
452static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
453{
454 if (likely(!timer_stats_active))
455 return;
456 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
457 timer->function, timer->start_comm, 0);
458}
459
460extern void __timer_stats_hrtimer_set_start_info(struct hrtimer *timer,
461 void *addr);
462
463static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
464{
465 __timer_stats_hrtimer_set_start_info(timer, __builtin_return_address(0));
466}
467
468static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
469{
470 timer->start_site = NULL;
471}
472#else
473static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
474{
475}
476
477static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
478{
479}
480
481static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
482{
483}
484#endif
485
486#endif 443#endif
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c
index 931a4d99bc55..d2f9239dc6ba 100644
--- a/kernel/hrtimer.c
+++ b/kernel/hrtimer.c
@@ -756,17 +756,33 @@ static inline void hrtimer_init_timer_hres(struct hrtimer *timer) { }
756 756
757#endif /* CONFIG_HIGH_RES_TIMERS */ 757#endif /* CONFIG_HIGH_RES_TIMERS */
758 758
759#ifdef CONFIG_TIMER_STATS 759static inline void timer_stats_hrtimer_set_start_info(struct hrtimer *timer)
760void __timer_stats_hrtimer_set_start_info(struct hrtimer *timer, void *addr)
761{ 760{
761#ifdef CONFIG_TIMER_STATS
762 if (timer->start_site) 762 if (timer->start_site)
763 return; 763 return;
764 764 timer->start_site = __builtin_return_address(0);
765 timer->start_site = addr;
766 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN); 765 memcpy(timer->start_comm, current->comm, TASK_COMM_LEN);
767 timer->start_pid = current->pid; 766 timer->start_pid = current->pid;
767#endif
768} 768}
769
770static inline void timer_stats_hrtimer_clear_start_info(struct hrtimer *timer)
771{
772#ifdef CONFIG_TIMER_STATS
773 timer->start_site = NULL;
769#endif 774#endif
775}
776
777static inline void timer_stats_account_hrtimer(struct hrtimer *timer)
778{
779#ifdef CONFIG_TIMER_STATS
780 if (likely(!timer_stats_active))
781 return;
782 timer_stats_update_stats(timer, timer->start_pid, timer->start_site,
783 timer->function, timer->start_comm, 0);
784#endif
785}
770 786
771/* 787/*
772 * Counterpart to lock_hrtimer_base above: 788 * Counterpart to lock_hrtimer_base above: