Lines Matching defs:entry
32 * list_add - add a new entry
33 * @new: new entry to be added
36 * Insert a new entry after the specified head.
45 * Delete a list entry by making the prev/next entries
58 * list_del - deletes entry from list.
59 * @entry: the element to delete from the list.
60 * Note: list_empty() on entry does not return true after this, the entry is
63 static inline void __list_del_entry(struct list_head *entry)
65 __list_del(entry->prev, entry->next);
68 static inline void list_del(struct list_head *entry)
70 __list_del(entry->prev, entry->next);
71 entry->next = LIST_POISON1;
72 entry->prev = LIST_POISON2;