From: Philippe Mathieu-Daudé Date: Wed, 12 Nov 2025 08:35:19 +0000 (+0100) Subject: hw/arm: Re-enable xenpvh machine in qemu-system-arm/aarch64 binaries X-Git-Tag: v10.2.0-rc1~4^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f20a824902abe144c1441322d02ba18567797452;p=thirdparty%2Fqemu.git hw/arm: Re-enable xenpvh machine in qemu-system-arm/aarch64 binaries While registering the ARM/Aarch64 machine interfaces in commit 38c5ab40031 ("hw/arm: Filter machine types for qemu-system-arm/aarch64 binaries"), we missed the XenPV machine. Correct that. Reported-by: Edgar E. Iglesias Signed-off-by: Philippe Mathieu-Daudé Tested-by: Edgar E. Iglesias Reviewed-by: Edgar E. Iglesias Message-Id: <20251117091253.56009-1-philmd@linaro.org> --- diff --git a/hw/arm/xen-pvh.c b/hw/arm/xen-pvh.c index 1a9eeb01c8..86a0296616 100644 --- a/hw/arm/xen-pvh.c +++ b/hw/arm/xen-pvh.c @@ -10,6 +10,7 @@ #include "hw/boards.h" #include "system/system.h" #include "hw/xen/xen-pvh-common.h" +#include "hw/arm/machines-qom.h" #define TYPE_XEN_ARM MACHINE_TYPE_NAME("xenpvh") @@ -95,6 +96,7 @@ static const TypeInfo xen_arm_machine_type = { .class_init = xen_arm_machine_class_init, .instance_size = sizeof(XenPVHMachineState), .instance_init = xen_arm_instance_init, + .interfaces = arm_aarch64_machine_interfaces, }; static void xen_arm_machine_register_types(void)