Lines Matching defs:list
78 * Lastly, you might have a wait list dedicated to a specific event, and have no
80 * closure_wake_up() on the appropriate wait list. In that case, just use
82 * closure was already on a wait list or not - a closure can only be on one wait
83 * list at a time.
111 struct llist_head list;
148 struct llist_node list;
171 void __closure_wake_up(struct closure_waitlist *list);
172 bool closure_wait(struct closure_waitlist *list, struct closure *cl);
292 * closure_wake_up - wake up all closures on a wait list,
295 static inline void closure_wake_up(struct closure_waitlist *list)
297 /* Memory barrier for the wait list */
299 __closure_wake_up(list);