qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 3/4] i8254: Fix migration from qemu-kvm < 1.1


From: Cole Robinson
Subject: [Qemu-devel] [PATCH 3/4] i8254: Fix migration from qemu-kvm < 1.1
Date: Tue, 19 Feb 2013 17:40:01 -0500

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 <address@hidden>
---
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]