Lines Matching refs:node
32 static inline void wq_list_add_after(struct io_wq_work_node *node,
38 pos->next = node;
39 node->next = next;
41 list->last = node;
44 static inline void wq_list_add_tail(struct io_wq_work_node *node,
47 node->next = NULL;
49 list->last = node;
50 WRITE_ONCE(list->first, node);
52 list->last->next = node;
53 list->last = node;
73 struct io_wq_work_node *node,
76 wq_list_cut(list, node, prev);