Lines Matching refs:pprev
795 h->pprev = NULL; in INIT_HLIST_NODE()
808 return !h->pprev; in hlist_unhashed()
821 return !READ_ONCE(h->pprev); in hlist_unhashed_lockless()
836 struct hlist_node **pprev = n->pprev; in __hlist_del() local
838 WRITE_ONCE(*pprev, next); in __hlist_del()
840 WRITE_ONCE(next->pprev, pprev); in __hlist_del()
854 n->pprev = LIST_POISON2; in hlist_del()
884 WRITE_ONCE(first->pprev, &n->next); in hlist_add_head()
886 WRITE_ONCE(n->pprev, &h->first); in hlist_add_head()
897 WRITE_ONCE(n->pprev, next->pprev); in hlist_add_before()
899 WRITE_ONCE(next->pprev, &n->next); in hlist_add_before()
900 WRITE_ONCE(*(n->pprev), n); in hlist_add_before()
913 WRITE_ONCE(n->pprev, &prev->next); in hlist_add_behind()
916 WRITE_ONCE(n->next->pprev, &n->next); in hlist_add_behind()
929 n->pprev = &n->next; in hlist_add_fake()
938 return h->pprev == &h->next; in hlist_fake()
952 return !n->next && n->pprev == &h->first; in hlist_is_singular_node()
968 new->first->pprev = &new->first; in hlist_move_list()