cregit-Linux how code gets into the kernel

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

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

#include <asm/paravirt.h>


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

Contributors

PersonTokensPropCommitsCommitProp
Peter 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 Zijlstra16100.00%1100.00%
Total16100.00%1100.00%


__visible bool __native_vcpu_is_preempted(long cpu) { return false; }

Contributors

PersonTokensPropCommitsCommitProp
Pan Xinhui650.00%133.33%
Peter Zijlstra541.67%133.33%
Waiman Long18.33%133.33%
Total12100.00%3100.00%

PV_CALLEE_SAVE_REGS_THUNK(__native_vcpu_is_preempted);
bool pv_is_native_vcpu_is_preempted(void) { return pv_lock_ops.vcpu_is_preempted.func == __raw_callee_save___native_vcpu_is_preempted; }

Contributors

PersonTokensPropCommitsCommitProp
Peter Zijlstra1487.50%150.00%
Pan Xinhui212.50%150.00%
Total16100.00%2100.00%

struct pv_lock_ops pv_lock_ops = { #ifdef CONFIG_SMP .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, .vcpu_is_preempted = PV_CALLEE_SAVE(__native_vcpu_is_preempted), #endif /* SMP */ }; EXPORT_SYMBOL(pv_lock_ops);

Overall Contributors

PersonTokensPropCommitsCommitProp
Peter Zijlstra9168.42%222.22%
Jeremy Fitzhardinge2720.30%333.33%
Pan Xinhui129.02%111.11%
Greg Kroah-Hartman10.75%111.11%
Waiman Long10.75%111.11%
Paul Gortmaker10.75%111.11%
Total133100.00%9100.00%
Directory: arch/x86/kernel
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.