net: hns: Fixed bug that netdev was opened twice
[linux/fpc-iii.git] / tools / memory-model / litmus-tests / WRC+pooncerelease+fencermbonceonce+Once.litmus
blobe9947250d7de6a06ca67a33e9214284fe421a723
1 C WRC+pooncerelease+fencermbonceonce+Once
3 (*
4  * Result: Never
5  *
6  * This litmus test is an extension of the message-passing pattern, where
7  * the first write is moved to a separate process.  Because it features
8  * a release and a read memory barrier, it should be forbidden.  More
9  * specifically, this litmus test is forbidden because smp_store_release()
10  * is A-cumulative in LKMM.
11  *)
15 P0(int *x)
17         WRITE_ONCE(*x, 1);
20 P1(int *x, int *y)
22         int r0;
24         r0 = READ_ONCE(*x);
25         smp_store_release(y, 1);
28 P2(int *x, int *y)
30         int r0;
31         int r1;
33         r0 = READ_ONCE(*y);
34         smp_rmb();
35         r1 = READ_ONCE(*x);
38 exists (1:r0=1 /\ 2:r0=1 /\ 2:r1=0)