~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/lib/dec_and_lock.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 #include <linux/export.h>
  3 #include <linux/spinlock.h>
  4 #include <linux/atomic.h>
  5 
  6 /*
  7  * This is an implementation of the notion of "decrement a
  8  * reference count, and return locked if it decremented to zero".
  9  *
 10  * NOTE NOTE NOTE! This is _not_ equivalent to
 11  *
 12  *      if (atomic_dec_and_test(&atomic)) {
 13  *              spin_lock(&lock);
 14  *              return 1;
 15  *      }
 16  *      return 0;
 17  *
 18  * because the spin-lock and the decrement must be
 19  * "atomic".
 20  */
 21 int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock)
 22 {
 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 
 27         /* Otherwise do it the slow way */
 28         spin_lock(lock);
 29         if (atomic_dec_and_test(atomic))
 30                 return 1;
 31         spin_unlock(lock);
 32         return 0;
 33 }
 34 
 35 EXPORT_SYMBOL(_atomic_dec_and_lock);
 36 
 37 int _atomic_dec_and_lock_irqsave(atomic_t *atomic, spinlock_t *lock,
 38                                  unsigned long *flags)
 39 {
 40         /* Subtract 1 from counter unless that drops it to 0 (ie. it was 1) */
 41         if (atomic_add_unless(atomic, -1, 1))
 42                 return 0;
 43 
 44         /* Otherwise do it the slow way */
 45         spin_lock_irqsave(lock, *flags);
 46         if (atomic_dec_and_test(atomic))
 47                 return 1;
 48         spin_unlock_irqrestore(lock, *flags);
 49         return 0;
 50 }
 51 EXPORT_SYMBOL(_atomic_dec_and_lock_irqsave);
 52 
 53 int _atomic_dec_and_raw_lock(atomic_t *atomic, raw_spinlock_t *lock)
 54 {
 55         /* Subtract 1 from counter unless that drops it to 0 (ie. it was 1) */
 56         if (atomic_add_unless(atomic, -1, 1))
 57                 return 0;
 58 
 59         /* Otherwise do it the slow way */
 60         raw_spin_lock(lock);
 61         if (atomic_dec_and_test(atomic))
 62                 return 1;
 63         raw_spin_unlock(lock);
 64         return 0;
 65 }
 66 EXPORT_SYMBOL(_atomic_dec_and_raw_lock);
 67 
 68 int _atomic_dec_and_raw_lock_irqsave(atomic_t *atomic, raw_spinlock_t *lock,
 69                                      unsigned long *flags)
 70 {
 71         /* Subtract 1 from counter unless that drops it to 0 (ie. it was 1) */
 72         if (atomic_add_unless(atomic, -1, 1))
 73                 return 0;
 74 
 75         /* Otherwise do it the slow way */
 76         raw_spin_lock_irqsave(lock, *flags);
 77         if (atomic_dec_and_test(atomic))
 78                 return 1;
 79         raw_spin_unlock_irqrestore(lock, *flags);
 80         return 0;
 81 }
 82 EXPORT_SYMBOL(_atomic_dec_and_raw_lock_irqsave);
 83 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php