Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / ISA2+pooncerelease+poacquirerelease+poacquireonce.litmus
blob025b0462ec9bcdb56c35150ab52716aea1b1589c
1 C ISA2+pooncerelease+poacquirerelease+poacquireonce
3 (*
4  * Result: Never
5  *
6  * This litmus test demonstrates that a release-acquire chain suffices
7  * to order P0()'s initial write against P2()'s final read.  The reason
8  * that the release-acquire chain suffices is because in all but one
9  * case (P2() to P0()), each process reads from the preceding process's
10  * write.  In memory-model-speak, there is only one non-reads-from
11  * (AKA non-rf) link, so release-acquire is all that is needed.
12  *)
16 P0(int *x, int *y)
18         WRITE_ONCE(*x, 1);
19         smp_store_release(y, 1);
22 P1(int *y, int *z)
24         int r0;
26         r0 = smp_load_acquire(y);
27         smp_store_release(z, 1);
30 P2(int *x, int *z)
32         int r0;
33         int r1;
35         r0 = smp_load_acquire(z);
36         r1 = READ_ONCE(*x);
39 exists (1:r0=1 /\ 2:r0=1 /\ 2:r1=0)