mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 21:21:41 +00:00
2ba5b4130e
The four litmus tests in Documentation/litmus-tests/atomic do not declare all of their local variables. Although this is just fine for LKMM analysis by herd7, it causes build failures when run in-kernel by klitmus. This commit therefore adjusts these tests to declare all local variables. Reported-by: Andrea Parri <parri.andrea@gmail.com> Signed-off-by: Paul E. McKenney <paulmck@kernel.org> Acked-by: Andrea Parri <parri.andrea@gmail.com>
36 lines
508 B
Plaintext
36 lines
508 B
Plaintext
C cmpxchg-fail-ordered-1
|
|
|
|
(*
|
|
* Result: Never
|
|
*
|
|
* Demonstrate that a failing cmpxchg() operation will act as a full
|
|
* barrier when followed by smp_mb__after_atomic().
|
|
*)
|
|
|
|
{}
|
|
|
|
P0(int *x, int *y, int *z)
|
|
{
|
|
int r0;
|
|
int r1;
|
|
|
|
WRITE_ONCE(*x, 1);
|
|
r1 = cmpxchg(z, 1, 0);
|
|
smp_mb__after_atomic();
|
|
r0 = READ_ONCE(*y);
|
|
}
|
|
|
|
P1(int *x, int *y, int *z)
|
|
{
|
|
int r0;
|
|
int r1;
|
|
|
|
WRITE_ONCE(*y, 1);
|
|
r1 = cmpxchg(z, 1, 0);
|
|
smp_mb__after_atomic();
|
|
r0 = READ_ONCE(*x);
|
|
}
|
|
|
|
locations[0:r1;1:r1]
|
|
exists (0:r0=0 /\ 1:r0=0)
|