Lines Matching defs:hrtimer
8 #include <linux/hrtimer.h>
161 struct hrtimer hrtimer;
834 * periodically read when a hrtimer aka cpu-clock leader triggers).
1114 hrtimer_start(&ccn->dt.hrtimer, arm_ccn_pmu_timer_period(),
1136 hrtimer_cancel(&ccn->dt.hrtimer);
1190 static enum hrtimer_restart arm_ccn_pmu_timer_handler(struct hrtimer *hrtimer)
1192 struct arm_ccn_dt *dt = container_of(hrtimer, struct arm_ccn_dt,
1193 hrtimer);
1200 hrtimer_forward_now(hrtimer, arm_ccn_pmu_timer_period());
1289 hrtimer_init(&ccn->dt.hrtimer, CLOCK_MONOTONIC,
1291 ccn->dt.hrtimer.function = arm_ccn_pmu_timer_handler;