[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 4/8] spapr: disable vmdesc submission for old machines
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 4/8] spapr: disable vmdesc submission for old machines |
Date: |
Mon, 29 Feb 2016 17:58:27 +1100 |
From: Greg Kurz <address@hidden>
Since QEMU 2.3, we have a vmdesc section in the migration stream.
This section is not mandatory but when migrating a pseries-2.2
machine from QEMU 2.2, you get a warning at the destination:
qemu-system-ppc64: Expected vmdescription section, but got 0
The warning goes away if we decide to skip vmdesc as well for
older pseries, like it is already done for pc's.
This can only be observed with -cpu POWER7 because POWER8
cannot migrate from QEMU 2.2 to 2.3 (insns_flags2 mismatch).
Signed-off-by: Greg Kurz <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/ppc/spapr.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index c119f55..3b4a557 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -2452,6 +2452,7 @@ DEFINE_SPAPR_MACHINE(2_3, "2.3", false);
static void spapr_machine_2_2_instance_options(MachineState *machine)
{
spapr_machine_2_3_instance_options(machine);
+ machine->suppress_vmdesc = true;
}
static void spapr_machine_2_2_class_options(MachineClass *mc)
--
2.5.0
- [Qemu-ppc] [PULL 0/8] ppc-for-2.6 queue 20160229, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 1/8] spapr_rng: disable hotpluggability, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 4/8] spapr: disable vmdesc submission for old machines,
David Gibson <=
- [Qemu-ppc] [PULL 7/8] migration: allow machine to enforce configuration section migration, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 3/8] spapr_pci: fix irq leak in RTAS ibm, change-msi, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 8/8] xics: report errors with the QEMU Error API, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 2/8] spapr_pci: kill useless variable in rtas_ibm_change_msi(), David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 5/8] dbdma: warn when using unassigned channel, David Gibson, 2016/02/29
- [Qemu-ppc] [PULL 6/8] spapr: skip configuration section during migration of older machines, David Gibson, 2016/02/29
- Re: [Qemu-ppc] [PULL 0/8] ppc-for-2.6 queue 20160229, Peter Maydell, 2016/02/29