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+poonceonces.litmus
blob74c49cb3c37bf78df023689161b09678f78ce2a1
1 C LB+poonceonces
3 (*
4  * Result: Sometimes
5  *
6  * Can the counter-intuitive outcome for the load-buffering pattern
7  * be prevented even with no explicit ordering?
8  *)
12 P0(int *x, int *y)
14         int r0;
16         r0 = READ_ONCE(*x);
17         WRITE_ONCE(*y, 1);
20 P1(int *x, int *y)
22         int r0;
24         r0 = READ_ONCE(*y);
25         WRITE_ONCE(*x, 1);
28 exists (0:r0=1 /\ 1:r0=1)