Lines Matching refs:WRITE_ONCE
37 WRITE_ONCE(list->next, list); in INIT_LIST_HEAD()
38 WRITE_ONCE(list->prev, list); in INIT_LIST_HEAD()
75 WRITE_ONCE(prev->next, new); in __list_add()
115 WRITE_ONCE(prev->next, next); in __list_del()
309 WRITE_ONCE(entry->prev, entry); in list_del_init_careful()
884 WRITE_ONCE(*pprev, next); in __hlist_del()
886 WRITE_ONCE(next->pprev, pprev); in __hlist_del()
928 WRITE_ONCE(n->next, first); in hlist_add_head()
930 WRITE_ONCE(first->pprev, &n->next); in hlist_add_head()
931 WRITE_ONCE(h->first, n); in hlist_add_head()
932 WRITE_ONCE(n->pprev, &h->first); in hlist_add_head()
943 WRITE_ONCE(n->pprev, next->pprev); in hlist_add_before()
944 WRITE_ONCE(n->next, next); in hlist_add_before()
945 WRITE_ONCE(next->pprev, &n->next); in hlist_add_before()
946 WRITE_ONCE(*(n->pprev), n); in hlist_add_before()
957 WRITE_ONCE(n->next, prev->next); in hlist_add_behind()
958 WRITE_ONCE(prev->next, n); in hlist_add_behind()
959 WRITE_ONCE(n->pprev, &prev->next); in hlist_add_behind()
962 WRITE_ONCE(n->next->pprev, &n->next); in hlist_add_behind()