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

TOMOYO Linux Cross Reference
Linux/tools/include/asm-generic/atomic-gcc.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/include/asm-generic/atomic-gcc.h (Version linux-6.12-rc7) and /tools/include/asm-mips/atomic-gcc.h (Version linux-4.18.20)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 #ifndef __TOOLS_ASM_GENERIC_ATOMIC_H              
  3 #define __TOOLS_ASM_GENERIC_ATOMIC_H              
  4                                                   
  5 #include <linux/compiler.h>                       
  6 #include <linux/types.h>                          
  7 #include <linux/bitops.h>                         
  8                                                   
  9 /*                                                
 10  * Atomic operations that C can't guarantee us    
 11  * resource counting etc..                        
 12  *                                                
 13  * Excerpts obtained from the Linux kernel sou    
 14  */                                               
 15                                                   
 16 #define ATOMIC_INIT(i)  { (i) }                   
 17                                                   
 18 /**                                               
 19  * atomic_read - read atomic variable             
 20  * @v: pointer of type atomic_t                   
 21  *                                                
 22  * Atomically reads the value of @v.              
 23  */                                               
 24 static inline int atomic_read(const atomic_t *    
 25 {                                                 
 26         return READ_ONCE((v)->counter);           
 27 }                                                 
 28                                                   
 29 /**                                               
 30  * atomic_set - set atomic variable               
 31  * @v: pointer of type atomic_t                   
 32  * @i: required value                             
 33  *                                                
 34  * Atomically sets the value of @v to @i.         
 35  */                                               
 36 static inline void atomic_set(atomic_t *v, int    
 37 {                                                 
 38         v->counter = i;                           
 39 }                                                 
 40                                                   
 41 /**                                               
 42  * atomic_inc - increment atomic variable         
 43  * @v: pointer of type atomic_t                   
 44  *                                                
 45  * Atomically increments @v by 1.                 
 46  */                                               
 47 static inline void atomic_inc(atomic_t *v)        
 48 {                                                 
 49         __sync_add_and_fetch(&v->counter, 1);     
 50 }                                                 
 51                                                   
 52 /**                                               
 53  * atomic_dec_and_test - decrement and test       
 54  * @v: pointer of type atomic_t                   
 55  *                                                
 56  * Atomically decrements @v by 1 and              
 57  * returns true if the result is 0, or false f    
 58  * cases.                                         
 59  */                                               
 60 static inline int atomic_dec_and_test(atomic_t    
 61 {                                                 
 62         return __sync_sub_and_fetch(&v->counte    
 63 }                                                 
 64                                                   
 65 #define cmpxchg(ptr, oldval, newval) \            
 66         __sync_val_compare_and_swap(ptr, oldva    
 67                                                   
 68 static inline int atomic_cmpxchg(atomic_t *v,     
 69 {                                                 
 70         return cmpxchg(&(v)->counter, oldval,     
 71 }                                                 
 72                                                   
 73 static inline int test_and_set_bit(long nr, un    
 74 {                                                 
 75         unsigned long mask = BIT_MASK(nr);        
 76         long old;                                 
 77                                                   
 78         addr += BIT_WORD(nr);                     
 79                                                   
 80         old = __sync_fetch_and_or(addr, mask);    
 81         return !!(old & mask);                    
 82 }                                                 
 83                                                   
 84 static inline int test_and_clear_bit(long nr,     
 85 {                                                 
 86         unsigned long mask = BIT_MASK(nr);        
 87         long old;                                 
 88                                                   
 89         addr += BIT_WORD(nr);                     
 90                                                   
 91         old = __sync_fetch_and_and(addr, ~mask    
 92         return !!(old & mask);                    
 93 }                                                 
 94                                                   
 95 #endif /* __TOOLS_ASM_GENERIC_ATOMIC_H */         
 96                                                   

~ [ 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