Lines Matching refs:pprev
573 h->pprev = NULL;
578 return !h->pprev;
589 struct hlist_node **pprev = n->pprev;
590 *pprev = next;
592 next->pprev = pprev;
599 n->pprev = LIST_POISON2;
615 first->pprev = &n->next;
617 n->pprev = &h->first;
624 n->pprev = next->pprev;
626 next->pprev = &n->next;
627 *(n->pprev) = n;
635 next->pprev = &n->next;
638 next->next->pprev = &next->next;
644 n->pprev = &n->next;
648 * Move a list from one list head to another. Fixup the pprev
656 new->first->pprev = &new->first;