Linked list
| Member Type | Member Name |
|---|---|
struct list_head | *next |
static inline __no_sanitize_addressINIT_LIST_HEAD(struct list_head*list)static inline void__list_add(struct list_head*new,struct list_head*prev,struct list_head*next)static inline voidlist_add(struct list_head*new,struct list_head*head)static inline voidlist_add_tail(struct list_head*new,struct list_head*head)static inline void__list_del(struct list_head*prev,struct list_head*next)static inline voidlist_del(struct list_head*entry)static inline voidlist_del_init(struct list_head*entry)static inline intlist_empty(struct list_head*head)static inlinestruct list_head *list_pop_front(struct list_head*head)static inlinestruct list_head *list_pop_front_init(struct list_head*head)static inline voidlist_splice_init(struct list_head*src,struct list_head*dst)