Lines Matching refs:hrtimer

39 	struct hrtimer *hrtimer;  in hrtimer_call_handler()  local
42 hrtimer = arg; in hrtimer_call_handler()
43 ret = hrtimer->function(hrtimer); in hrtimer_call_handler()
46 callout_schedule_sbt(&hrtimer->callout, in hrtimer_call_handler()
47 nstosbt(hrtimer->expires), nstosbt(hrtimer->precision), 0); in hrtimer_call_handler()
49 callout_deactivate(&hrtimer->callout); in hrtimer_call_handler()
54 linux_hrtimer_active(struct hrtimer *hrtimer) in linux_hrtimer_active() argument
58 mtx_lock(&hrtimer->mtx); in linux_hrtimer_active()
59 ret = callout_active(&hrtimer->callout); in linux_hrtimer_active()
60 mtx_unlock(&hrtimer->mtx); in linux_hrtimer_active()
71 linux_hrtimer_try_to_cancel(struct hrtimer *hrtimer) in linux_hrtimer_try_to_cancel() argument
75 mtx_lock(&hrtimer->mtx); in linux_hrtimer_try_to_cancel()
76 ret = callout_stop(&hrtimer->callout); in linux_hrtimer_try_to_cancel()
77 mtx_unlock(&hrtimer->mtx); in linux_hrtimer_try_to_cancel()
92 linux_hrtimer_cancel(struct hrtimer *hrtimer) in linux_hrtimer_cancel() argument
95 return (callout_drain(&hrtimer->callout) > 0); in linux_hrtimer_cancel()
99 linux_hrtimer_init(struct hrtimer *hrtimer) in linux_hrtimer_init() argument
102 memset(hrtimer, 0, sizeof(*hrtimer)); in linux_hrtimer_init()
103 mtx_init(&hrtimer->mtx, "hrtimer", NULL, in linux_hrtimer_init()
105 callout_init_mtx(&hrtimer->callout, &hrtimer->mtx, 0); in linux_hrtimer_init()
109 linux_hrtimer_set_expires(struct hrtimer *hrtimer, ktime_t time) in linux_hrtimer_set_expires() argument
111 hrtimer->expires = ktime_to_ns(time); in linux_hrtimer_set_expires()
115 linux_hrtimer_start(struct hrtimer *hrtimer, ktime_t time) in linux_hrtimer_start() argument
118 linux_hrtimer_start_range_ns(hrtimer, time, 0); in linux_hrtimer_start()
122 linux_hrtimer_start_range_ns(struct hrtimer *hrtimer, ktime_t time, in linux_hrtimer_start_range_ns() argument
126 mtx_lock(&hrtimer->mtx); in linux_hrtimer_start_range_ns()
127 hrtimer->precision = nsec; in linux_hrtimer_start_range_ns()
128 callout_reset_sbt(&hrtimer->callout, nstosbt(ktime_to_ns(time)), in linux_hrtimer_start_range_ns()
129 nstosbt(nsec), hrtimer_call_handler, hrtimer, 0); in linux_hrtimer_start_range_ns()
130 mtx_unlock(&hrtimer->mtx); in linux_hrtimer_start_range_ns()
134 linux_hrtimer_forward_now(struct hrtimer *hrtimer, ktime_t interval) in linux_hrtimer_forward_now() argument
137 mtx_lock(&hrtimer->mtx); in linux_hrtimer_forward_now()
138 callout_reset_sbt(&hrtimer->callout, nstosbt(ktime_to_ns(interval)), in linux_hrtimer_forward_now()
139 nstosbt(hrtimer->precision), hrtimer_call_handler, hrtimer, 0); in linux_hrtimer_forward_now()
140 mtx_unlock(&hrtimer->mtx); in linux_hrtimer_forward_now()