Lines Matching refs:pprev
612 h->pprev = NULL; in INIT_HLIST_NODE()
617 return !h->pprev; in hlist_unhashed()
628 struct hlist_node **pprev = n->pprev; in __hlist_del() local
630 WRITE_ONCE(*pprev, next); in __hlist_del()
632 next->pprev = pprev; in __hlist_del()
639 n->pprev = LIST_POISON2; in hlist_del()
655 first->pprev = &n->next; in hlist_add_head()
657 n->pprev = &h->first; in hlist_add_head()
664 n->pprev = next->pprev; in hlist_add_before()
666 next->pprev = &n->next; in hlist_add_before()
667 *(n->pprev) = n; in hlist_add_before()
675 n->pprev = &prev->next; in hlist_add_behind()
678 n->next->pprev = &n->next; in hlist_add_behind()
684 n->pprev = &n->next; in hlist_add_fake()
689 return h->pprev == &h->next; in hlist_fake()
701 new->first->pprev = &new->first; in hlist_move_list()