-
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.
yaml --- r: 113308 b: refs/heads/master c: eceb138 h: refs/heads/master v: v3
- Loading branch information
Ingo Molnar
committed
Oct 12, 2008
1 parent
4270c6c
commit 42fb5e2
Showing
65 changed files
with
1,987 additions
and
1,052 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4c7145a1ec1bb789d5f07e47510e8bda546a7c4a | ||
refs/heads/master: eceb1383361c6327cef4de01d278cd6722ebceeb |
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
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
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
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,37 @@ | ||
/* | ||
* 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> | ||
|
||
static void default_spin_lock_flags(struct raw_spinlock *lock, unsigned long flags) | ||
{ | ||
__raw_spin_lock(lock); | ||
} | ||
|
||
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_lock_flags = default_spin_lock_flags, | ||
.spin_trylock = __ticket_spin_trylock, | ||
.spin_unlock = __ticket_spin_unlock, | ||
#endif | ||
}; | ||
EXPORT_SYMBOL(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
Oops, something went wrong.