Lines Matching refs:hrtimer

9 #include <linux/hrtimer.h>
166 * hrtimer_init - called when the hrtimer is initialized
167 * @hrtimer: pointer to struct hrtimer
173 TP_PROTO(struct hrtimer *hrtimer, clockid_t clockid,
176 TP_ARGS(hrtimer, clockid, mode),
179 __field( void *, hrtimer )
185 __entry->hrtimer = hrtimer;
190 TP_printk("hrtimer=%p clockid=%s mode=%s", __entry->hrtimer,
196 * hrtimer_start - called when the hrtimer is started
197 * @hrtimer: pointer to struct hrtimer
201 TP_PROTO(struct hrtimer *hrtimer, enum hrtimer_mode mode),
203 TP_ARGS(hrtimer, mode),
206 __field( void *, hrtimer )
214 __entry->hrtimer = hrtimer;
215 __entry->function = hrtimer->function;
216 __entry->expires = hrtimer_get_expires(hrtimer);
217 __entry->softexpires = hrtimer_get_softexpires(hrtimer);
221 TP_printk("hrtimer=%p function=%ps expires=%llu softexpires=%llu "
222 "mode=%s", __entry->hrtimer, __entry->function,
229 * hrtimer_expire_entry - called immediately before the hrtimer callback
230 * @hrtimer: pointer to struct hrtimer
238 TP_PROTO(struct hrtimer *hrtimer, ktime_t *now),
240 TP_ARGS(hrtimer, now),
243 __field( void *, hrtimer )
249 __entry->hrtimer = hrtimer;
251 __entry->function = hrtimer->function;
254 TP_printk("hrtimer=%p function=%ps now=%llu",
255 __entry->hrtimer, __entry->function,
261 TP_PROTO(struct hrtimer *hrtimer),
263 TP_ARGS(hrtimer),
266 __field( void *, hrtimer )
270 __entry->hrtimer = hrtimer;
273 TP_printk("hrtimer=%p", __entry->hrtimer)
277 * hrtimer_expire_exit - called immediately after the hrtimer callback returns
278 * @hrtimer: pointer to struct hrtimer
285 TP_PROTO(struct hrtimer *hrtimer),
287 TP_ARGS(hrtimer)
291 * hrtimer_cancel - called when the hrtimer is canceled
292 * @hrtimer: pointer to struct hrtimer
296 TP_PROTO(struct hrtimer *hrtimer),
298 TP_ARGS(hrtimer)