Lines Matching defs:head
164 static void flush_cond_wait(struct cond_wait **head);
2924 static void add_cond_wait(struct cond_wait **head, struct cond_wait *w)
2928 w->next = *head;
2929 *head = w;
2932 static void remove_cond_wait(struct cond_wait **head, struct cond_wait *cw)
2937 for (w = *head, prev = NULL ; w != NULL ; prev = w, w = w->next) {
2942 *head = w->next;
2948 static void flush_cond_wait(struct cond_wait **head)
2950 while (*head != NULL) {
2951 wake_up_interruptible(&(*head)->q);
2952 *head = (*head)->next;