Home | History | Annotate | Download | only in ffsb-6.0-rc2

Lines Matching refs:next

11 	list->next = list;
16 struct list_head *prev, struct list_head *next)
18 next->prev = new;
19 new->next = next;
21 prev->next = new;
24 void __list_del(struct list_head *prev, struct list_head *next)
26 next->prev = prev;
27 prev->next = next;
32 __list_add(new, head, head->next);
42 __list_del(entry->prev, entry->next);
43 entry->next = NULL;
49 new->next = old->next;
50 new->next->prev = new;
52 new->prev->next = new;