Lines Matching refs:pprev
514 struct hlist_node *next, **pprev;
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev;
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev = LIST_POISON2;
575 if (n->pprev) {
588 first->pprev = &n->next;
590 n->pprev = &h->first;
618 n->pprev = &h->first;
621 first->pprev = &n->next;
629 n->pprev = next->pprev;
631 next->pprev = &n->next;
632 *(n->pprev) = n;
640 next->pprev = &n->next;
643 next->next->pprev = &next->next;