Lines Matching defs:hrtimer
8 #include <linux/hrtimer.h>
161 struct hrtimer hrtimer;
829 * periodically read when a hrtimer aka cpu-clock leader triggers).
1109 hrtimer_start(&ccn->dt.hrtimer, arm_ccn_pmu_timer_period(),
1131 hrtimer_cancel(&ccn->dt.hrtimer);
1185 static enum hrtimer_restart arm_ccn_pmu_timer_handler(struct hrtimer *hrtimer)
1187 struct arm_ccn_dt *dt = container_of(hrtimer, struct arm_ccn_dt,
1188 hrtimer);
1195 hrtimer_forward_now(hrtimer, arm_ccn_pmu_timer_period());
1284 hrtimer_init(&ccn->dt.hrtimer, CLOCK_MONOTONIC,
1286 ccn->dt.hrtimer.function = arm_ccn_pmu_timer_handler;