From 2c231ee40ebf7f31bce176a26d62f471d54227cc Mon Sep 17 00:00:00 2001 From: weishaokun Date: Fri, 31 May 2024 11:39:38 +0800 Subject: [PATCH] Change the value of no_ged from true to false Change the value of no_ged from true to false It fixes the issue of the `no_ged` parameter mismatch when migrating a virtual machine started with QEMU 4.1 to a QEMU 6.2 Signed-off-by: Shaokun Wei Change the value of no_ged from true to false It fixes the issue of the `no_ged` parameter mismatch when migrating a virtual machine started with QEMU 4.1 to a QEMU 6.2 Signed-off-by: Shaokun Wei --- hw/arm/virt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 93554cccf17..eadba9535ef 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -3290,7 +3290,7 @@ static void virt_machine_4_1_options(MachineClass *mc) virt_machine_4_2_options(mc); compat_props_add(mc->compat_props, hw_compat_4_1, hw_compat_4_1_len); - vmc->no_ged = true; + vmc->no_ged = false; mc->auto_enable_numa_with_memhp = false; } DEFINE_VIRT_MACHINE(4, 1) -- Gitee