cregit-Linux how code gets into the kernel

Release 4.8 arch/arm/include/asm/mutex.h

/*
 * arch/arm/include/asm/mutex.h
 *
 * ARM optimized mutex locking primitives
 *
 * Please look into asm-generic/mutex-xchg.h for a formal definition.
 */
#ifndef _ASM_MUTEX_H

#define _ASM_MUTEX_H
/*
 * On pre-ARMv6 hardware this results in a swp-based implementation,
 * which is the most efficient. For ARMv6+, we have exclusive memory
 * accessors and use atomic_dec to avoid the extra xchg operations
 * on the locking slowpaths.
 */
#if __LINUX_ARM_ARCH__ < 6
#include <asm-generic/mutex-xchg.h>
#else
#include <asm-generic/mutex-dec.h>
#endif
#endif	/* _ASM_MUTEX_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
will deaconwill deacon1453.85%133.33%
nicolas pitrenicolas pitre1142.31%133.33%
russell kingrussell king13.85%133.33%
Total26100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.