Skip to content

Commit d6f34f4

Browse files
committed
x86/xen: fix booting 32-bit pv guest
Commit 2f62f36 ("x86/xen: Make the boot CPU idle task reliable") introduced a regression for booting 32 bit Xen PV guests: the address of the initial stack needs to be a virtual one. Fixes: 2f62f36 ("x86/xen: Make the boot CPU idle task reliable") Signed-off-by: Juergen Gross <[email protected]> Reviewed-by: Boris Ostrovsky <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Juergen Gross <[email protected]>
1 parent 0e1b427 commit d6f34f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/xen/xen-head.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ SYM_CODE_START(startup_xen)
3838
#ifdef CONFIG_X86_64
3939
mov initial_stack(%rip), %rsp
4040
#else
41-
mov pa(initial_stack), %esp
41+
mov initial_stack, %esp
4242
#endif
4343

4444
#ifdef CONFIG_X86_64

0 commit comments

Comments
 (0)