Lines Matching refs:llist_node
57 struct llist_node *first;
60 struct llist_node { struct
61 struct llist_node *next; argument
194 static inline struct llist_node *llist_next(struct llist_node *node) in llist_next()
199 extern bool llist_add_batch(struct llist_node *new_first,
200 struct llist_node *new_last,
203 static inline bool __llist_add_batch(struct llist_node *new_first, in __llist_add_batch()
204 struct llist_node *new_last, in __llist_add_batch()
219 static inline bool llist_add(struct llist_node *new, struct llist_head *head) in llist_add()
224 static inline bool __llist_add(struct llist_node *new, struct llist_head *head) in __llist_add()
237 static inline struct llist_node *llist_del_all(struct llist_head *head) in llist_del_all()
242 static inline struct llist_node *__llist_del_all(struct llist_head *head) in __llist_del_all()
244 struct llist_node *first = head->first; in __llist_del_all()
250 extern struct llist_node *llist_del_first(struct llist_head *head);
252 struct llist_node *llist_reverse_order(struct llist_node *head);