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()
156 WRITE_ONCE(prev->next, new); in __list_add()
196 WRITE_ONCE(prev->next, next); in __list_del()
390 WRITE_ONCE(entry->prev, entry); in list_del_init_careful()
980 WRITE_ONCE(*pprev, next); in __hlist_del()
982 WRITE_ONCE(next->pprev, pprev); in __hlist_del()
1024 WRITE_ONCE(n->next, first); in hlist_add_head()
1026 WRITE_ONCE(first->pprev, &n->next); in hlist_add_head()
1027 WRITE_ONCE(h->first, n); in hlist_add_head()
1028 WRITE_ONCE(n->pprev, &h->first); in hlist_add_head()
1039 WRITE_ONCE(n->pprev, next->pprev); in hlist_add_before()
1040 WRITE_ONCE(n->next, next); in hlist_add_before()
1041 WRITE_ONCE(next->pprev, &n->next); in hlist_add_before()
1042 WRITE_ONCE(*(n->pprev), n); in hlist_add_before()
1053 WRITE_ONCE(n->next, prev->next); in hlist_add_behind()
1054 WRITE_ONCE(prev->next, n); in hlist_add_behind()
1055 WRITE_ONCE(n->pprev, &prev->next); in hlist_add_behind()
1058 WRITE_ONCE(n->next->pprev, &n->next); in hlist_add_behind()