Lines Matching defs:timer
133 static enum hrtimer_restart profile_spus(struct hrtimer *timer)
182 hrtimer_forward(timer, timer->base->get_time(), kt);
186 printk(KERN_INFO "SPU_PROF: spu-prof timer ending\n");
190 static struct hrtimer timer;
202 pr_debug("timer resolution: %lu\n", TICK_NSEC);
204 hrtimer_init(&timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
205 hrtimer_set_expires(&timer, kt);
206 timer.function = profile_spus;
216 hrtimer_start(&timer, kt, HRTIMER_MODE_REL);
240 hrtimer_cancel(&timer);