cregit-Linux how code gets into the kernel

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

/* SPDX-License-Identifier: GPL-2.0 */
#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 Fitzhardinge20100.00%1100.00%
Total20100.00%1100.00%

#define arch_cmpxchg64(ptr, o, n) \ ({ \ BUILD_BUG_ON(sizeof(*(ptr)) != 8); \ cmpxchg((ptr), (o), (n)); \ }) #define arch_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 Fitzhardinge3050.85%218.18%
Mathieu Desnoyers1016.95%19.09%
Jeff Dike610.17%19.09%
Christoph Lameter46.78%19.09%
H. Peter Anvin35.08%19.09%
Dmitriy Vyukov23.39%19.09%
Peter Zijlstra11.69%19.09%
Borislav Petkov11.69%19.09%
Joe Perches11.69%19.09%
Greg Kroah-Hartman11.69%19.09%
Total59100.00%11100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.