Lines Matching refs:head
8 static inline int list_empty(const struct list_head *head)
10 return head->next == head;
13 static inline void list_add(struct list_head *new, struct list_head *head)
15 new->next = head->next;
16 head->next = new;
25 #define list_for_each_safe(pos, n, head) \
26 for (n = (head), pos = (head)->next; pos != (head); \