mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 18:24:14 +08:00
d5de884135
ftrace requires certain low-level code, like spinlocks and timestamps, to be compiled without -pg in order to avoid infinite recursion. This patch splits out the core paravirt spinlocks and the Xen spinlocks into separate files which can be compiled without -pg. Also do xen/time.c while we're about it. As a result, we can now use ftrace within a Xen domain. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
32 lines
822 B
C
32 lines
822 B
C
/*
|
|
* 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 <asm/paravirt.h>
|
|
|
|
struct pv_lock_ops pv_lock_ops = {
|
|
#ifdef CONFIG_SMP
|
|
.spin_is_locked = __ticket_spin_is_locked,
|
|
.spin_is_contended = __ticket_spin_is_contended,
|
|
|
|
.spin_lock = __ticket_spin_lock,
|
|
.spin_trylock = __ticket_spin_trylock,
|
|
.spin_unlock = __ticket_spin_unlock,
|
|
#endif
|
|
};
|
|
EXPORT_SYMBOL_GPL(pv_lock_ops);
|
|
|
|
void __init paravirt_use_bytelocks(void)
|
|
{
|
|
#ifdef CONFIG_SMP
|
|
pv_lock_ops.spin_is_locked = __byte_spin_is_locked;
|
|
pv_lock_ops.spin_is_contended = __byte_spin_is_contended;
|
|
pv_lock_ops.spin_lock = __byte_spin_lock;
|
|
pv_lock_ops.spin_trylock = __byte_spin_trylock;
|
|
pv_lock_ops.spin_unlock = __byte_spin_unlock;
|
|
#endif
|
|
}
|