* [Qemu-devel] [PATCH] acpi_piix4: fix migration of gpe fields
@ 2012-10-30 23:14 Marcelo Tosatti
2012-10-31 8:30 ` Paolo Bonzini
0 siblings, 1 reply; 2+ messages in thread
From: Marcelo Tosatti @ 2012-10-30 23:14 UTC (permalink / raw)
To: kvm, qemu-devel; +Cc: Paolo Bonzini, Anthony Liguori, Juan Quintela
Migrate 16 bytes for en/sts fields (which is the correct size),
increase version to 3, and document how to support incoming
migration from qemu-kvm 1.2.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c
index 15275cf..519269a 100644
--- a/hw/acpi_piix4.c
+++ b/hw/acpi_piix4.c
@@ -235,10 +235,9 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
{ \
.name = (stringify(_field)), \
.version_id = 0, \
- .num = GPE_LEN, \
.info = &vmstate_info_uint16, \
.size = sizeof(uint16_t), \
- .flags = VMS_ARRAY | VMS_POINTER, \
+ .flags = VMS_SINGLE | VMS_POINTER, \
.offset = vmstate_offset_pointer(_state, _field, uint8_t), \
}
@@ -267,11 +266,54 @@ static const VMStateDescription vmstate_pci_status = {
}
};
+static int acpi_load_old(QEMUFile *f, void *opaque, int version_id)
+{
+ PIIX4PMState *s = opaque;
+ int ret, i;
+ uint16_t temp;
+
+ ret = pci_device_load(&s->dev, f);
+ if (ret < 0) {
+ return ret;
+ }
+ qemu_get_be16s(f, &s->ar.pm1.evt.sts);
+ qemu_get_be16s(f, &s->ar.pm1.evt.en);
+ qemu_get_be16s(f, &s->ar.pm1.cnt.cnt);
+
+ ret = vmstate_load_state(f, &vmstate_apm, opaque, 1);
+ if (ret) {
+ return ret;
+ }
+
+ qemu_get_timer(f, s->ar.tmr.timer);
+ qemu_get_sbe64s(f, &s->ar.tmr.overflow_time);
+
+ qemu_get_be16s(f, (uint16_t *)s->ar.gpe.sts);
+ for (i = 0; i < 3; i++) {
+ qemu_get_be16s(f, &temp);
+ }
+
+ qemu_get_be16s(f, (uint16_t *)s->ar.gpe.en);
+ for (i = 0; i < 3; i++) {
+ qemu_get_be16s(f, &temp);
+ }
+
+ ret = vmstate_load_state(f, &vmstate_pci_status, opaque, 1);
+ return ret;
+}
+
+/* qemu-kvm 1.2 uses version 3 but advertised as 2
+ * To support incoming qemu-kvm 1.2 migration, change version_id
+ * and minimum_version_id to 2 below (which breaks migration from
+ * qemu 1.2).
+ *
+ */
static const VMStateDescription vmstate_acpi = {
.name = "piix4_pm",
- .version_id = 2,
- .minimum_version_id = 1,
+ .version_id = 3,
+ .minimum_version_id = 3,
.minimum_version_id_old = 1,
+ .load_state_old = acpi_load_old,
.post_load = vmstate_acpi_post_load,
.fields = (VMStateField []) {
VMSTATE_PCI_DEVICE(dev, PIIX4PMState),
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] acpi_piix4: fix migration of gpe fields
2012-10-30 23:14 [Qemu-devel] [PATCH] acpi_piix4: fix migration of gpe fields Marcelo Tosatti
@ 2012-10-31 8:30 ` Paolo Bonzini
0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2012-10-31 8:30 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: Anthony Liguori, qemu-devel, kvm, Juan Quintela
Il 31/10/2012 00:14, Marcelo Tosatti ha scritto:
>
> Migrate 16 bytes for en/sts fields (which is the correct size),
> increase version to 3, and document how to support incoming
> migration from qemu-kvm 1.2.
>
> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
>
> diff --git a/hw/acpi_piix4.c b/hw/acpi_piix4.c
> index 15275cf..519269a 100644
> --- a/hw/acpi_piix4.c
> +++ b/hw/acpi_piix4.c
> @@ -235,10 +235,9 @@ static int vmstate_acpi_post_load(void *opaque, int version_id)
> { \
> .name = (stringify(_field)), \
> .version_id = 0, \
> - .num = GPE_LEN, \
> .info = &vmstate_info_uint16, \
> .size = sizeof(uint16_t), \
> - .flags = VMS_ARRAY | VMS_POINTER, \
> + .flags = VMS_SINGLE | VMS_POINTER, \
> .offset = vmstate_offset_pointer(_state, _field, uint8_t), \
> }
>
> @@ -267,11 +266,54 @@ static const VMStateDescription vmstate_pci_status = {
> }
> };
>
> +static int acpi_load_old(QEMUFile *f, void *opaque, int version_id)
> +{
> + PIIX4PMState *s = opaque;
> + int ret, i;
> + uint16_t temp;
> +
> + ret = pci_device_load(&s->dev, f);
> + if (ret < 0) {
> + return ret;
> + }
> + qemu_get_be16s(f, &s->ar.pm1.evt.sts);
> + qemu_get_be16s(f, &s->ar.pm1.evt.en);
> + qemu_get_be16s(f, &s->ar.pm1.cnt.cnt);
> +
> + ret = vmstate_load_state(f, &vmstate_apm, opaque, 1);
> + if (ret) {
> + return ret;
> + }
> +
> + qemu_get_timer(f, s->ar.tmr.timer);
> + qemu_get_sbe64s(f, &s->ar.tmr.overflow_time);
> +
> + qemu_get_be16s(f, (uint16_t *)s->ar.gpe.sts);
> + for (i = 0; i < 3; i++) {
> + qemu_get_be16s(f, &temp);
> + }
> +
> + qemu_get_be16s(f, (uint16_t *)s->ar.gpe.en);
> + for (i = 0; i < 3; i++) {
> + qemu_get_be16s(f, &temp);
> + }
> +
> + ret = vmstate_load_state(f, &vmstate_pci_status, opaque, 1);
> + return ret;
> +}
> +
> +/* qemu-kvm 1.2 uses version 3 but advertised as 2
> + * To support incoming qemu-kvm 1.2 migration, change version_id
> + * and minimum_version_id to 2 below (which breaks migration from
> + * qemu 1.2).
> + *
> + */
> static const VMStateDescription vmstate_acpi = {
> .name = "piix4_pm",
> - .version_id = 2,
> - .minimum_version_id = 1,
> + .version_id = 3,
> + .minimum_version_id = 3,
> .minimum_version_id_old = 1,
> + .load_state_old = acpi_load_old,
> .post_load = vmstate_acpi_post_load,
> .fields = (VMStateField []) {
> VMSTATE_PCI_DEVICE(dev, PIIX4PMState),
>
ACK
Paolo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-10-31 8:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-30 23:14 [Qemu-devel] [PATCH] acpi_piix4: fix migration of gpe fields Marcelo Tosatti
2012-10-31 8:30 ` Paolo Bonzini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).