Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / MP+fencewmbonceonce+fencermbonceonce.litmus
bloba273da9faa6d3646a83a5f802bede59cc09459cc
1 C MP+fencewmbonceonce+fencermbonceonce
3 (*
4  * Result: Never
5  *
6  * This litmus test demonstrates that smp_wmb() and smp_rmb() provide
7  * sufficient ordering for the message-passing pattern.  However, it
8  * is usually better to use smp_store_release() and smp_load_acquire().
9  *)
13 P0(int *x, int *y)
15         WRITE_ONCE(*x, 1);
16         smp_wmb();
17         WRITE_ONCE(*y, 1);
20 P1(int *x, int *y)
22         int r0;
23         int r1;
25         r0 = READ_ONCE(*y);
26         smp_rmb();
27         r1 = READ_ONCE(*x);
30 exists (1:r0=1 /\ 1:r1=0)