Lines Matching refs:READ_ONCE
15 q = READ_ONCE(a);
17 p = READ_ONCE(b);
25 q = READ_ONCE(a);
28 p = READ_ONCE(b);
35 q = READ_ONCE(a);
40 of ordering. But please note that neither the READ_ONCE() nor the
41 WRITE_ONCE() are optional. Without the READ_ONCE(), the compiler might
55 So don't leave out either the READ_ONCE() or the WRITE_ONCE().
56 In particular, although READ_ONCE() does force the compiler to emit a
62 q = READ_ONCE(a);
76 q = READ_ONCE(a);
94 q = READ_ONCE(a);
106 q = READ_ONCE(a);
115 The initial READ_ONCE() is still required to prevent the compiler from
123 q = READ_ONCE(a);
137 q = READ_ONCE(a);
148 q = READ_ONCE(a);
166 q = READ_ONCE(a);
174 q = READ_ONCE(a);
178 compiler from out-guessing your code. Again, although READ_ONCE() really
186 q = READ_ONCE(a);
239 away the ordering. Careful use of READ_ONCE() and WRITE_ONCE()
243 dependency into nonexistence. Careful use of READ_ONCE() or