|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/setup: resync the boot stack 8 bytes at a time
commit 7b31305ff55de21d798005ed791a693909c0bdc3
Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
AuthorDate: Thu May 15 15:33:01 2014 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Thu May 15 15:33:01 2014 +0200
x86/setup: resync the boot stack 8 bytes at a time
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
xen/arch/x86/setup.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c
index d8598a3..a2fe7e0 100644
--- a/xen/arch/x86/setup.c
+++ b/xen/arch/x86/setup.c
@@ -906,7 +906,7 @@ void __init noreturn __start_xen(unsigned long mbi_p)
/* Re-sync the stack and then switch to relocated pagetables. */
asm volatile (
- "rep movsb ; " /* re-sync the stack */
+ "rep movsq ; " /* re-sync the stack */
"movq %%cr4,%%rsi ; "
"andb $0x7f,%%sil ; "
"movq %%rsi,%%cr4 ; " /* CR4.PGE == 0 */
@@ -914,7 +914,7 @@ void __init noreturn __start_xen(unsigned long mbi_p)
"orb $0x80,%%sil ; "
"movq %%rsi,%%cr4 " /* CR4.PGE == 1 */
: : "r" (__pa(idle_pg_table)), "S" (cpu0_stack),
- "D" (__va(__pa(cpu0_stack))), "c" (STACK_SIZE) : "memory" );
+ "D" (__va(__pa(cpu0_stack))), "c" (STACK_SIZE / 8) : "memory"
);
bootstrap_map(NULL);
}
--
generated by git-patchbot for /home/xen/git/xen.git#master
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |