Lines Matching defs:list
15 static inline void INIT_LIST_HEAD(struct list_head *list)
17 list->next = list;
18 list->prev = list;
34 * @head: list head to add it after
45 * Delete a list entry by making the prev/next entries
48 * This is only for internal list manipulation where we know
58 * list_del - deletes entry from list.
59 * @entry: the element to delete from the list.