#include <linux/module.h>1#include <linux/spinlock.h>2#include <asm/atomic.h>34/*5* This is an implementation of the notion of "decrement a6* reference count, and return locked if it decremented to zero".7*8* NOTE NOTE NOTE! This is _not_ equivalent to9*10* if (atomic_dec_and_test(&atomic)) {11* spin_lock(&lock);12* return 1;13* }14* return 0;15*16* because the spin-lock and the decrement must be17* "atomic".18*/19int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock)20{21/* Subtract 1 from counter unless that drops it to 0 (ie. it was 1) */22if (atomic_add_unless(atomic, -1, 1))23return 0;2425/* Otherwise do it the slow way */26spin_lock(lock);27if (atomic_dec_and_test(atomic))28return 1;29spin_unlock(lock);30return 0;31}3233EXPORT_SYMBOL(_atomic_dec_and_lock);343536