Lines Matching refs:llist_node
55 struct llist_node *first;
58 struct llist_node { struct
59 struct llist_node *next; argument
192 static inline struct llist_node *llist_next(struct llist_node *node) in llist_next()
197 extern bool llist_add_batch(struct llist_node *new_first,
198 struct llist_node *new_last,
201 static inline bool __llist_add_batch(struct llist_node *new_first, in __llist_add_batch()
202 struct llist_node *new_last, in __llist_add_batch()
217 static inline bool llist_add(struct llist_node *new, struct llist_head *head) in llist_add()
222 static inline bool __llist_add(struct llist_node *new, struct llist_head *head) in __llist_add()
235 static inline struct llist_node *llist_del_all(struct llist_head *head) in llist_del_all()
240 static inline struct llist_node *__llist_del_all(struct llist_head *head) in __llist_del_all()
242 struct llist_node *first = head->first; in __llist_del_all()
248 extern struct llist_node *llist_del_first(struct llist_head *head);
250 struct llist_node *llist_reverse_order(struct llist_node *head);