Merge tag 'for-5.8/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / R+poonceonces.litmus
blob5386f128a131dfa50852e6fc5869700d0fe09d17
1 C R+poonceonces
3 (*
4  * Result: Sometimes
5  *
6  * This is the unordered (thus lacking smp_mb()) version of one of the
7  * classic counterintuitive litmus tests that illustrates the effects of
8  * store propagation delays.
9  *)
13 P0(int *x, int *y)
15         WRITE_ONCE(*x, 1);
16         WRITE_ONCE(*y, 1);
19 P1(int *x, int *y)
21         int r0;
23         WRITE_ONCE(*y, 2);
24         r0 = READ_ONCE(*x);
27 exists (y=2 /\ 1:r0=0)