Lines Matching refs:prev
39 struct list_head *next, *prev; member
57 list->prev = list; in INIT_LIST_HEAD()
67 struct list_head *prev, in __list_add() argument
70 next->prev = new; in __list_add()
72 new->prev = prev; in __list_add()
73 prev->next = new; in __list_add()
99 __list_add(new, head->prev, head); in list_add_tail()
109 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del() argument
111 next->prev = prev; in __list_del()
112 prev->next = next; in __list_del()
117 __list_del(entry->prev, entry->next); in __list_del_entry()
130 entry->prev = LIST_POISON2; in list_del()