Lines Matching refs:head
76 * @head: list head to add it before
78 * Insert a new entry before the specified head.
81 static inline void list_add_tail(struct list_head *new, struct list_head *head)
83 __list_add(new, head->prev, head);
98 * @head: the head for your list.
101 #define list_for_each_entry(pos, head, member) \
102 for (pos = list_entry((head)->next, typeof(*pos), member); \
103 &pos->member != (head); \