-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86: split spinlock implementations out into their own files
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>
- Loading branch information
Jeremy Fitzhardinge
authored and
Ingo Molnar
committed
Jul 24, 2008
1 parent
338b9bb
commit d5de884
Showing
7 changed files
with
226 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* 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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
ifdef CONFIG_FTRACE | ||
# Do not profile debug and lowlevel utilities | ||
CFLAGS_REMOVE_spinlock.o = -pg | ||
CFLAGS_REMOVE_time.o = -pg | ||
endif | ||
|
||
obj-y := enlighten.o setup.o multicalls.o mmu.o \ | ||
time.o xen-asm_$(BITS).o grant-table.o suspend.o | ||
|
||
obj-$(CONFIG_SMP) += smp.o | ||
obj-$(CONFIG_SMP) += smp.o spinlock.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.