blob: a65c314555416d9f1ea262455d1da313e1959902 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
2#include <linux/spinlock.h>
3#include <asm/atomic.h>
4
David S. Miller4db2ce02005-09-14 21:47:01 -07005/*
6 * This is an implementation of the notion of "decrement a
7 * reference count, and return locked if it decremented to zero".
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * NOTE NOTE NOTE! This is _not_ equivalent to
10 *
11 * if (atomic_dec_and_test(&atomic)) {
12 * spin_lock(&lock);
13 * return 1;
14 * }
15 * return 0;
16 *
17 * because the spin-lock and the decrement must be
18 * "atomic".
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock)
21{
Nick Piggina57004e12006-01-08 01:02:19 -080022#ifdef CONFIG_SMP
23 /* Subtract 1 from counter unless that drops it to 0 (ie. it was 1) */
24 if (atomic_add_unless(atomic, -1, 1))
25 return 0;
26#endif
27 /* Otherwise do it the slow way */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 spin_lock(lock);
29 if (atomic_dec_and_test(atomic))
30 return 1;
31 spin_unlock(lock);
32 return 0;
33}
34
35EXPORT_SYMBOL(_atomic_dec_and_lock);