tools/memory-model: Label MP tests' producers and consumers
[linux-block.git] / tools / memory-model / litmus-tests / MP+onceassign+derefonce.litmus
CommitLineData
8f32543b
PM
1C MP+onceassign+derefonce
2
3(*
4 * Result: Never
5 *
6 * This litmus test demonstrates that rcu_assign_pointer() and
7 * rcu_dereference() suffice to ensure that an RCU reader will not see
8 * pre-initialization garbage when it traverses an RCU-protected data
9 * structure containing a newly inserted element.
10 *)
1c27b644
PM
11
12{
acc4bdc5 13 int *p=y;
1947bfcf 14 int x;
acc4bdc5 15 int y=0;
1c27b644
PM
16}
17
b6ff3084 18P0(int *x, int **p) // Producer
1c27b644
PM
19{
20 WRITE_ONCE(*x, 1);
acc4bdc5 21 rcu_assign_pointer(*p, x);
1c27b644
PM
22}
23
b6ff3084 24P1(int *x, int **p) // Consumer
1c27b644
PM
25{
26 int *r0;
27 int r1;
28
29 rcu_read_lock();
acc4bdc5 30 r0 = rcu_dereference(*p);
1c27b644
PM
31 r1 = READ_ONCE(*r0);
32 rcu_read_unlock();
33}
34
b6ff3084 35exists (1:r0=x /\ 1:r1=0) (* Bad outcome. *)