Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
56 lines
886 B
Plaintext
56 lines
886 B
Plaintext
C DCL-fixed
|
|
|
|
(*
|
|
* Result: Never
|
|
*
|
|
* This litmus test demonstrates that double-checked locking can be
|
|
* reliable given proper use of smp_load_acquire() and smp_store_release()
|
|
* in addition to the locking.
|
|
*)
|
|
|
|
{
|
|
int flag;
|
|
int data;
|
|
}
|
|
|
|
P0(int *flag, int *data, spinlock_t *lck)
|
|
{
|
|
int r0;
|
|
int r1;
|
|
int r2;
|
|
|
|
r0 = smp_load_acquire(flag);
|
|
if (r0 == 0) {
|
|
spin_lock(lck);
|
|
r1 = READ_ONCE(*flag);
|
|
if (r1 == 0) {
|
|
WRITE_ONCE(*data, 1);
|
|
smp_store_release(flag, 1);
|
|
}
|
|
spin_unlock(lck);
|
|
}
|
|
r2 = READ_ONCE(*data);
|
|
}
|
|
|
|
P1(int *flag, int *data, spinlock_t *lck)
|
|
{
|
|
int r0;
|
|
int r1;
|
|
int r2;
|
|
|
|
r0 = smp_load_acquire(flag);
|
|
if (r0 == 0) {
|
|
spin_lock(lck);
|
|
r1 = READ_ONCE(*flag);
|
|
if (r1 == 0) {
|
|
WRITE_ONCE(*data, 1);
|
|
smp_store_release(flag, 1);
|
|
}
|
|
spin_unlock(lck);
|
|
}
|
|
r2 = READ_ONCE(*data);
|
|
}
|
|
|
|
locations [flag;data;0:r0;0:r1;1:r0;1:r1]
|
|
exists (0:r2=0 \/ 1:r2=0)
|