File: /Users/paulross/dev/linux/linux-3.13/include/asm-generic/bitops/ext2-atomic-setbit.h

Green shading in the line number column means the source is part of the translation unit, red means it is conditionally excluded. Highlighted line numbers link to the translation unit page. Highlighted macros link to the macro page.

       1: #ifndef _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
       2: #define _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_
       3: 
       4: /*
       5:  * Atomic bitops based version of ext2 atomic bitops
       6:  */
       7: 
       8: #define ext2_set_bit_atomic(l, nr, addr)    test_and_set_bit_le(nr, addr)
       9: #define ext2_clear_bit_atomic(l, nr, addr)    test_and_clear_bit_le(nr, addr)
      10: 
      11: #endif /* _ASM_GENERIC_BITOPS_EXT2_ATOMIC_SETBIT_H_ */
      12: