cregit-Linux how code gets into the kernel

Release 4.7 arch/x86/kernel/paravirt-spinlocks.c

Directory: arch/x86/kernel
/*
 * Split spinlock implementation out into its own file, so it can be
 * compiled in a FTRACE-compatible way.
 */
#include <linux/spinlock.h>
#include <linux/module.h>
#include <linux/jump_label.h>

#include <asm/paravirt.h>

#ifdef CONFIG_QUEUED_SPINLOCKS

__visible void __native_queued_spin_unlock(struct qspinlock *lock) { native_queued_spin_unlock(lock); }

Contributors

PersonTokensPropCommitsCommitProp
peter zijlstrapeter zijlstra16100.00%1100.00%
Total16100.00%1100.00%

PV_CALLEE_SAVE_REGS_THUNK(__native_queued_spin_unlock);
bool pv_is_native_spin_unlock(void) { return pv_lock_ops.queued_spin_unlock.func == __raw_callee_save___native_queued_spin_unlock; }

Contributors

PersonTokensPropCommitsCommitProp
peter zijlstrapeter zijlstra16100.00%1100.00%
Total16100.00%1100.00%

#endif struct pv_lock_ops pv_lock_ops = { #ifdef CONFIG_SMP #ifdef CONFIG_QUEUED_SPINLOCKS .queued_spin_lock_slowpath = native_queued_spin_lock_slowpath, .queued_spin_unlock = PV_CALLEE_SAVE(__native_queued_spin_unlock), .wait = paravirt_nop, .kick = paravirt_nop, #else /* !CONFIG_QUEUED_SPINLOCKS */ .lock_spinning = __PV_IS_CALLEE_SAVE(paravirt_nop), .unlock_kick = paravirt_nop, #endif /* !CONFIG_QUEUED_SPINLOCKS */ #endif /* SMP */ }; EXPORT_SYMBOL(pv_lock_ops); struct static_key paravirt_ticketlocks_enabled = STATIC_KEY_INIT_FALSE; EXPORT_SYMBOL(paravirt_ticketlocks_enabled);

Overall Contributors

PersonTokensPropCommitsCommitProp
peter zijlstrapeter zijlstra7155.04%114.29%
jeremy fitzhardingejeremy fitzhardinge5441.86%571.43%
ingo molnaringo molnar43.10%114.29%
Total129100.00%7100.00%
Directory: arch/x86/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}