cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/include/asm/cmpxchg_64.h

#ifndef _ASM_X86_CMPXCHG_64_H

#define _ASM_X86_CMPXCHG_64_H


static inline void set_64bit(volatile u64 *ptr, u64 val) { *ptr = val; }

Contributors

PersonTokensPropCommitsCommitProp
jeremy fitzhardingejeremy fitzhardinge20100.00%1100.00%
Total20100.00%1100.00%

#define cmpxchg64(ptr, o, n) \ ({ \ BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ cmpxchg((ptr), (o), (n)); \ }) #define cmpxchg64_local(ptr, o, n) \ ({ \ BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ cmpxchg_local((ptr), (o), (n)); \ }) #define system_has_cmpxchg_double() boot_cpu_has(X86_FEATURE_CX16) #endif /* _ASM_X86_CMPXCHG_64_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
jeremy fitzhardingejeremy fitzhardinge3051.72%222.22%
mathieu desnoyersmathieu desnoyers1118.97%111.11%
jeff dikejeff dike610.34%111.11%
christoph lameterchristoph lameter46.90%111.11%
h. peter anvinh. peter anvin35.17%111.11%
peter zijlstrapeter zijlstra23.45%111.11%
joe perchesjoe perches11.72%111.11%
borislav petkovborislav petkov11.72%111.11%
Total58100.00%9100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.