Simple sleeper structure
struct hrtimer_sleeper { struct hrtimer timer; struct task_struct * task; };
timer
embedded timer structure
task
task to wake up
task is set to NULL, when the timer expires.