Lines Matching refs:entry
93 static inline void list_del(struct list_head *entry) in list_del() argument
95 __list_del(entry->prev, entry->next); in list_del()
96 entry->next = LIST_POISON1; in list_del()
97 entry->prev = LIST_POISON2; in list_del()
127 static inline void list_del_init(struct list_head *entry) in list_del_init() argument
129 __list_del(entry->prev, entry->next); in list_del_init()
130 INIT_LIST_HEAD(entry); in list_del_init()
215 struct list_head *head, struct list_head *entry) in __list_cut_position() argument
217 struct list_head *new_first = entry->next; in __list_cut_position()
220 list->prev = entry; in __list_cut_position()
221 entry->next = list; in __list_cut_position()
241 struct list_head *head, struct list_head *entry) in list_cut_position() argument
246 (head->next != entry && head != entry)) in list_cut_position()
248 if (entry == head) in list_cut_position()
251 __list_cut_position(list, head, entry); in list_cut_position()