aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/hrtimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/hrtimer.c')
-rw-r--r--kernel/hrtimer.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c
index 18314ae830ee..fdf95968e517 100644
--- a/kernel/hrtimer.c
+++ b/kernel/hrtimer.c
@@ -1046,6 +1046,15 @@ EXPORT_SYMBOL_GPL(hrtimer_start);
1046#ifdef CONFIG_ARCH_HAS_SEND_PULL_TIMERS 1046#ifdef CONFIG_ARCH_HAS_SEND_PULL_TIMERS
1047 1047
1048/** 1048/**
1049 * hrtimer_start_on_info_init - Initialize hrtimer_start_on_info
1050 */
1051void hrtimer_start_on_info_init(struct hrtimer_start_on_info *info)
1052{
1053 memset(info, 0, sizeof(struct hrtimer_start_on_info));
1054 atomic_set(&info->state, HRTIMER_START_ON_INACTIVE);
1055}
1056
1057/**
1049 * hrtimer_pull - PULL_TIMERS_VECTOR callback on remote cpu 1058 * hrtimer_pull - PULL_TIMERS_VECTOR callback on remote cpu
1050 */ 1059 */
1051void hrtimer_pull(void) 1060void hrtimer_pull(void)