Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / LB+fencembonceonce+ctrlonceonce.litmus
blob4727f5aaf03b05b1c98a6d2d53ded40c8d7023e4
1 C LB+fencembonceonce+ctrlonceonce
3 (*
4  * Result: Never
5  *
6  * This litmus test demonstrates that lightweight ordering suffices for
7  * the load-buffering pattern, in other words, preventing all processes
8  * reading from the preceding process's write.  In this example, the
9  * combination of a control dependency and a full memory barrier are enough
10  * to do the trick.  (But the full memory barrier could be replaced with
11  * another control dependency and order would still be maintained.)
12  *)
16 P0(int *x, int *y)
18         int r0;
20         r0 = READ_ONCE(*x);
21         if (r0)
22                 WRITE_ONCE(*y, 1);
25 P1(int *x, int *y)
27         int r0;
29         r0 = READ_ONCE(*y);
30         smp_mb();
31         WRITE_ONCE(*x, 1);
34 exists (0:r0=1 /\ 1:r0=1)