Home | History | Annotate | Download | only in added

Lines Matching full:pprev

551 	h->pprev = NULL;
556 return !h->pprev;
567 struct hlist_node **pprev = n->pprev;
568 *pprev = next;
570 next->pprev = pprev;
577 n->pprev = LIST_POISON2;
593 first->pprev = &n->next;
595 n->pprev = &h->first;
602 n->pprev = next->pprev;
604 next->pprev = &n->next;
605 *(n->pprev) = n;
613 next->pprev = &n->next;
616 next->next->pprev = &next->next;
620 * Move a list from one list head to another. Fixup the pprev
628 new->first->pprev = &new->first;