qemu-kvm commit 81bdec908fb2be0ccaff1d4ee67956c509e440ad did this, but the logic can't be carried unconditionally in qemu.git without breaking migration from qemu < 1.1.
Conditionalize it with --enable-migrate-from-qemu-kvm Signed-off-by: Cole Robinson <crobi...@redhat.com> --- hw/i8254_common.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hw/i8254_common.c b/hw/i8254_common.c index 8c2e45a..072fa09 100644 --- a/hw/i8254_common.c +++ b/hw/i8254_common.c @@ -275,7 +275,15 @@ static const VMStateDescription vmstate_pit_common = { .pre_save = pit_dispatch_pre_save, .post_load = pit_dispatch_post_load, .fields = (VMStateField[]) { +#ifdef CONFIG_MIGRATE_FROM_QEMU_KVM + /* qemu-kvm version_id=2 had 'flags' here which is equivalent + * This fixes incoming migration from qemu-kvm 1.0, but breaks + * incoming migration from qemu < 1.1 + */ + VMSTATE_UINT32(channels[0].irq_disabled, PITCommonState), +#else VMSTATE_UINT32_V(channels[0].irq_disabled, PITCommonState, 3), +#endif VMSTATE_STRUCT_ARRAY(channels, PITCommonState, 3, 2, vmstate_pit_channel, PITChannelState), VMSTATE_INT64(channels[0].next_transition_time, -- 1.8.1.2