Lines Matching refs:xlist_head
9 struct xlist_head { struct
10 struct xlist_head *next; argument
13 static inline void INIT_XLIST_HEAD(struct xlist_head *list) in INIT_XLIST_HEAD()
18 static inline int xlist_empty(struct xlist_head *head) in xlist_empty()
23 static inline void xlist_add(struct xlist_head *new, struct xlist_head *tail, in xlist_add()
24 struct xlist_head *head) in xlist_add()
26 struct xlist_head *cur; in xlist_add()
27 struct xlist_head *check; in xlist_add()
38 static inline struct xlist_head *xlist_del_head(struct xlist_head *head) in xlist_del_head()
40 struct xlist_head *cur; in xlist_del_head()
41 struct xlist_head *check; in xlist_del_head()
42 struct xlist_head *next; in xlist_del_head()
58 static inline struct xlist_head *xlist_del_head_fast(struct xlist_head *head) in xlist_del_head_fast()
60 struct xlist_head *cur; in xlist_del_head_fast()
70 static inline void xlist_splice(struct xlist_head *list, in xlist_splice()
71 struct xlist_head *head) in xlist_splice()
73 struct xlist_head *cur; in xlist_splice()