Lines Matching refs: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) {
39 WRITE_ONCE(list->first, node);
49 node->next = list->first;
52 WRITE_ONCE(list->first, node);
59 /* first in the list, if prev==NULL */
61 WRITE_ONCE(list->first, last->next);