[PATCH 11/16] turn priviled operation into a macro in head_64.S
- From: Glauber de Oliveira Costa <gcosta@xxxxxxxxxx>
- Date: Wed, 31 Oct 2007 16:14:56 -0300
under paravirt, read cr2 cannot be issued directly anymore.
So wrap it in a macro, defined to the operation itself in case
paravirt is off, but to something else if we have paravirt
in the game
Signed-off-by: Glauber de Oliveira Costa <gcosta@xxxxxxxxxx>
Signed-off-by: Steven Rostedt <rostedt@xxxxxxxxxxx>
Acked-by: Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx>
---
arch/x86/kernel/head_64.S | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S
index b6167fe..c31b1c9 100644
--- a/arch/x86/kernel/head_64.S
+++ b/arch/x86/kernel/head_64.S
@@ -19,6 +19,13 @@
#include <asm/msr.h>
#include <asm/cache.h>
+#ifdef CONFIG_PARAVIRT
+#include <asm/asm-offsets.h>
+#include <asm/paravirt.h>
+#else
+#define GET_CR2_INTO_RCX movq %cr2, %rcx
+#endif
+
/* we are not able to switch in one step to the final KERNEL ADRESS SPACE
* because we need identity-mapped pages.
*
@@ -267,7 +274,7 @@ ENTRY(early_idt_handler)
xorl %eax,%eax
movq 8(%rsp),%rsi # get rip
movq (%rsp),%rdx
- movq %cr2,%rcx
+ GET_CR2_INTO_RCX
leaq early_idt_msg(%rip),%rdi
call early_printk
cmpl $2,early_recursion_flag(%rip)
--
1.4.4.2
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- [PATCH 12/16] tweak io_64.h for paravirt.
- From: Glauber de Oliveira Costa
- [PATCH 12/16] tweak io_64.h for paravirt.
- References:
- [PATCH 0/7] (Re-)introducing pvops for x86_64 - Real pvops work part
- From: Glauber de Oliveira Costa
- [PATCH 1/16] Wipe out traditional opt from x86_64 Makefile
- From: Glauber de Oliveira Costa
- [PATCH 2/16] paravirt hooks at entry functions.
- From: Glauber de Oliveira Costa
- [PATCH 3/16] read/write_crX, clts and wbinvd for 64-bit paravirt
- From: Glauber de Oliveira Costa
- [PATCH 5/16] report ring kernel is running without paravirt
- From: Glauber de Oliveira Costa
- [PATCH 6/16] export math_state_restore
- From: Glauber de Oliveira Costa
- [PATCH 9/16] This patch add provisions for time related functions so they
- From: Glauber de Oliveira Costa
- [PATCH 0/7] (Re-)introducing pvops for x86_64 - Real pvops work part
- Prev by Date: [PATCH 2/16] paravirt hooks at entry functions.
- Next by Date: Re: USB: FIx locks and urb->status in adutux
- Previous by thread: [PATCH 9/16] This patch add provisions for time related functions so they
- Next by thread: [PATCH 12/16] tweak io_64.h for paravirt.
- Index(es):
Relevant Pages
|
|