Lines Matching refs:head
20 * @head: head of timerqueue
27 bool timerqueue_add(struct timerqueue_head *head, struct timerqueue_node *node)
29 struct rb_node **p = &head->rb_root.rb_root.rb_node;
48 rb_insert_color_cached(&node->node, &head->rb_root, leftmost);
57 * @head: head of timerqueue
63 bool timerqueue_del(struct timerqueue_head *head, struct timerqueue_node *node)
67 rb_erase_cached(&node->node, &head->rb_root);
70 return !RB_EMPTY_ROOT(&head->rb_root.rb_root);