Lines Matching full:first
7 for (pos = (head)->first; pos; pos = (pos)->next)
10 for (pos = (head)->first, prv = NULL; pos; prv = pos, pos = (pos)->next)
15 #define wq_list_empty(list) (READ_ONCE((list)->first) == NULL)
18 (list)->first = NULL; \
37 if (!list->first) { in wq_list_add_tail()
39 WRITE_ONCE(list->first, node); in wq_list_add_tail()
49 node->next = list->first; in wq_list_add_head()
52 WRITE_ONCE(list->first, node); in wq_list_add_head()
59 /* first in the list, if prev==NULL */ in wq_list_cut()
61 WRITE_ONCE(list->first, last->next); in wq_list_cut()
74 to->next = list->first; in __wq_list_splice()