diff options
author | Mark Cave-Ayland <mark.caveayland@nutanix.com> | 2025-08-28 12:09:50 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-08-29 11:20:47 +0200 |
commit | dc58530f0a58fe09862026ab6c26c68c00f4d535 (patch) | |
tree | 13f06ccda29de61a431a6858a35c7ad8a89665ff | |
parent | ba5500e0385fad2dd1d4878872695023e5e32e92 (diff) | |
download | qemu-dc58530f0a58fe09862026ab6c26c68c00f4d535.zip qemu-dc58530f0a58fe09862026ab6c26c68c00f4d535.tar.gz qemu-dc58530f0a58fe09862026ab6c26c68c00f4d535.tar.bz2 |
hw/i386/pc_piix.c: remove igvm initialisation from pc_init_isa()
According to the QEMU documentation igvm is only supported for the pc and q35
machines so remove igvm support from the isapc machine.
Signed-off-by: Mark Cave-Ayland <mark.caveayland@nutanix.com>
Link: https://lore.kernel.org/r/20250828111057.468712-8-mark.caveayland@nutanix.com
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | hw/i386/pc_piix.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index f1b4468..5ae265b 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -640,16 +640,6 @@ static void pc_init_isa(MachineState *machine) x86_nvdimm_acpi_dsmio, x86ms->fw_cfg, OBJECT(pcms)); } - -#if defined(CONFIG_IGVM) - /* Apply guest state from IGVM if supplied */ - if (x86ms->igvm) { - if (IGVM_CFG_GET_CLASS(x86ms->igvm) - ->process(x86ms->igvm, machine->cgs, false, &error_fatal) < 0) { - g_assert_not_reached(); - } - } -#endif } #endif |