From: Jan Beulich Date: Wed, 15 Sep 2021 09:01:29 +0000 (+0200) Subject: x86/boot: properly "ignore" early evaluated "no-real-mode" X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~194 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e5046fc6e99db83e2c21ff8d9bfa92a0b6d328ad;p=xen.git x86/boot: properly "ignore" early evaluated "no-real-mode" The option parser takes off "no-" prefixes before matching, so they also shouldn't be specified to match against. Fixes: e44d98608476 ("x86/setup: Ignore early boot parameters like no-real-mode") Signed-off-by: Jan Beulich Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index 8105dc36bb..b101565f14 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -692,7 +692,7 @@ static void __init noreturn reinit_bsp_stack(void) * has options that are only used during the very initial boot process, * so they can be ignored now. */ -ignore_param("no-real-mode"); +ignore_param("real-mode"); ignore_param("edd"); ignore_param("edid");