Lines Matching defs:new
21 static inline void __list_add(struct list_head *new,
25 next->prev = new;
26 new->next = next;
27 new->prev = prev;
28 prev->next = new;
32 * list_add - add a new entry
33 * @new: new entry to be added
36 * Insert a new entry after the specified head.
39 static inline void list_add(struct list_head *new, struct list_head *head)
41 __list_add(new, head, head->next);