From: Andrew Cooper Date: Mon, 27 Apr 2020 12:19:15 +0000 (+0100) Subject: x86/pvh: Override opt_console_xen earlier X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~345 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=dd0882f912005b56653013025ebd160862e360ad;p=xen.git x86/pvh: Override opt_console_xen earlier This allows printk() to work from the start of day, and backtraces from as early as the IDT is set up. Signed-off-by: Andrew Cooper Reviewed-by: Wei Liu --- diff --git a/xen/arch/x86/boot/head.S b/xen/arch/x86/boot/head.S index 153a53f250..150f7f90a2 100644 --- a/xen/arch/x86/boot/head.S +++ b/xen/arch/x86/boot/head.S @@ -402,6 +402,9 @@ __pvh_start: mov %ebx, sym_esi(pvh_start_info_pa) + /* Force xen console. Will revert to user choice in init code. */ + movb $-1, sym_esi(opt_console_xen) + /* Prepare gdt and segments */ add %esi, sym_esi(gdt_boot_base) lgdt sym_esi(gdt_boot_descr) diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index 885919d5c3..eb56d78c2f 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -728,11 +728,6 @@ void __init noreturn __start_xen(unsigned long mbi_p) if ( pvh_boot ) { - /* - * Force xen console to be enabled. We will reset it later in console - * initialisation code. - */ - opt_console_xen = -1; ASSERT(mbi_p == 0); pvh_init(&mbi, &mod); }