1 // SPDX-License-Identifier: GPL-2.0
3 * arch/alpha/lib/dec_and_lock.c
5 * ll/sc version of atomic_dec_and_lock()
9 #include <linux/spinlock.h>
10 #include <linux/atomic.h>
11 #include <linux/export.h>
14 .global _atomic_dec_and_lock \n\
15 .ent _atomic_dec_and_lock \n\
17 _atomic_dec_and_lock: \n\
19 1: ldl_l $1, 0($16) \n\
28 3: ldgp $29, 0($29) \n\
29 br $atomic_dec_and_lock_1..ng \n\
33 .end _atomic_dec_and_lock");
35 static int __used
atomic_dec_and_lock_1(atomic_t
*atomic
, spinlock_t
*lock
)
39 if (atomic_dec_and_test(atomic
))
44 EXPORT_SYMBOL(_atomic_dec_and_lock
);