Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / R+fencembonceonces.litmus
blob222a0b850b4a5d98d087c2d94ab5158e928c43ae
1 C R+fencembonceonces
3 (*
4  * Result: Never
5  *
6  * This is the fully ordered (via smp_mb()) version of one of the classic
7  * counterintuitive litmus tests that illustrates the effects of store
8  * propagation delays.  Note that weakening either of the barriers would
9  * cause the resulting test to be allowed.
10  *)
14 P0(int *x, int *y)
16         WRITE_ONCE(*x, 1);
17         smp_mb();
18         WRITE_ONCE(*y, 1);
21 P1(int *x, int *y)
23         int r0;
25         WRITE_ONCE(*y, 2);
26         smp_mb();
27         r0 = READ_ONCE(*x);
30 exists (y=2 /\ 1:r0=0)