Lines Matching refs:WRITE_ONCE
35 WRITE_ONCE(list->next, list); in INIT_LIST_HEAD()
73 WRITE_ONCE(prev->next, new); in __list_add()
113 WRITE_ONCE(prev->next, next); in __list_del()
838 WRITE_ONCE(*pprev, next); in __hlist_del()
840 WRITE_ONCE(next->pprev, pprev); in __hlist_del()
882 WRITE_ONCE(n->next, first); in hlist_add_head()
884 WRITE_ONCE(first->pprev, &n->next); in hlist_add_head()
885 WRITE_ONCE(h->first, n); 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()
898 WRITE_ONCE(n->next, next); 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()
911 WRITE_ONCE(n->next, prev->next); in hlist_add_behind()
912 WRITE_ONCE(prev->next, n); in hlist_add_behind()
913 WRITE_ONCE(n->pprev, &prev->next); in hlist_add_behind()
916 WRITE_ONCE(n->next->pprev, &n->next); in hlist_add_behind()