Lines Matching refs:pprev
856 h->pprev = NULL; in INIT_HLIST_NODE()
869 return !h->pprev; in hlist_unhashed()
882 return !READ_ONCE(h->pprev); in hlist_unhashed_lockless()
897 struct hlist_node **pprev = n->pprev; in __hlist_del() local
899 WRITE_ONCE(*pprev, next); in __hlist_del()
901 WRITE_ONCE(next->pprev, pprev); in __hlist_del()
915 n->pprev = LIST_POISON2; in hlist_del()
945 WRITE_ONCE(first->pprev, &n->next); in hlist_add_head()
947 WRITE_ONCE(n->pprev, &h->first); in hlist_add_head()
958 WRITE_ONCE(n->pprev, next->pprev); in hlist_add_before()
960 WRITE_ONCE(next->pprev, &n->next); in hlist_add_before()
961 WRITE_ONCE(*(n->pprev), n); in hlist_add_before()
974 WRITE_ONCE(n->pprev, &prev->next); in hlist_add_behind()
977 WRITE_ONCE(n->next->pprev, &n->next); in hlist_add_behind()
990 n->pprev = &n->next; in hlist_add_fake()
999 return h->pprev == &h->next; in hlist_fake()
1013 return !n->next && n->pprev == &h->first; in hlist_is_singular_node()
1029 new->first->pprev = &new->first; in hlist_move_list()