Lines Matching refs:next
24 struct io_wq_work_node *next;
36 struct io_wq_work_node *next = pos->next;
38 pos->next = node;
39 node->next = next;
40 if (!next)
47 node->next = NULL;
52 list->last->next = node;
63 WRITE_ONCE(list->first, last->next);
65 prev->next = last->next;
69 last->next = NULL;
80 for (pos = (head)->first, prv = NULL; pos; prv = pos, pos = (pos)->next)
95 if (!work->list.next)
98 return container_of(work->list.next, struct io_wq_work, list);