Merge tag 'for-5.8/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / MP+polocks.litmus
blob712a4fcdf6ce88f35e533d84e143777b37906123
1 C MP+polocks
3 (*
4  * Result: Never
5  *
6  * This litmus test demonstrates how lock acquisitions and releases can
7  * stand in for smp_load_acquire() and smp_store_release(), respectively.
8  * In other words, when holding a given lock (or indeed after releasing a
9  * given lock), a CPU is not only guaranteed to see the accesses that other
10  * CPUs made while previously holding that lock, it is also guaranteed
11  * to see all prior accesses by those other CPUs.
12  *)
16 P0(int *x, int *y, spinlock_t *mylock)
18         WRITE_ONCE(*x, 1);
19         spin_lock(mylock);
20         WRITE_ONCE(*y, 1);
21         spin_unlock(mylock);
24 P1(int *x, int *y, spinlock_t *mylock)
26         int r0;
27         int r1;
29         spin_lock(mylock);
30         r0 = READ_ONCE(*y);
31         spin_unlock(mylock);
32         r1 = READ_ONCE(*x);
35 exists (1:r0=1 /\ 1:r1=0)