From: Juan Quintela <quintela@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
"Michael S. Tsirkin" <mst@redhat.com>
Subject: [Qemu-devel] [PATCH 21/36] savevm: Ignore minimum_version_id_old if there is no load_state_old
Date: Mon, 5 May 2014 22:30:19 +0200 [thread overview]
Message-ID: <1399321834-31310-22-git-send-email-quintela@redhat.com> (raw)
In-Reply-To: <1399321834-31310-1-git-send-email-quintela@redhat.com>
From: Peter Maydell <peter.maydell@linaro.org>
At the moment we require vmstate definitions to set minimum_version_id_old
to the same value as minimum_version_id if they do not provide a
load_state_old handler. Since the load_state_old functionality is
required only for a handful of devices that need to retain migration
compatibility with a pre-vmstate implementation, this means the bulk
of devices have pointless boilerplate. Relax the definition so that
minimum_version_id_old is ignored if there is no load_state_old handler.
Note that under the old scheme we would segfault if the vmstate
specified a minimum_version_id_old that was less than minimum_version_id
but did not provide a load_state_old function, and the incoming state
specified a version number between minimum_version_id_old and
minimum_version_id. Under the new scheme this will just result in
our failing the migration.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
---
docs/migration.txt | 12 +++++-------
vmstate.c | 9 +++++----
2 files changed, 10 insertions(+), 11 deletions(-)
diff --git a/docs/migration.txt b/docs/migration.txt
index 0e0a1d4..fe1f2bb 100644
--- a/docs/migration.txt
+++ b/docs/migration.txt
@@ -139,7 +139,6 @@ static const VMStateDescription vmstate_kbd = {
.name = "pckbd",
.version_id = 3,
.minimum_version_id = 3,
- .minimum_version_id_old = 3,
.fields = (VMStateField []) {
VMSTATE_UINT8(write_cmd, KBDState),
VMSTATE_UINT8(status, KBDState),
@@ -168,12 +167,13 @@ You can see that there are several version fields:
- minimum_version_id: the minimum version_id that VMState is able to understand
for that device.
- minimum_version_id_old: For devices that were not able to port to vmstate, we can
- assign a function that knows how to read this old state.
+ assign a function that knows how to read this old state. This field is
+ ignored if there is no load_state_old handler.
So, VMState is able to read versions from minimum_version_id to
-version_id. And the function load_state_old() is able to load state
-from minimum_version_id_old to minimum_version_id. This function is
-deprecated and will be removed when no more users are left.
+version_id. And the function load_state_old() (if present) is able to
+load state from minimum_version_id_old to minimum_version_id. This
+function is deprecated and will be removed when no more users are left.
=== Massaging functions ===
@@ -255,7 +255,6 @@ const VMStateDescription vmstate_ide_drive_pio_state = {
.name = "ide_drive/pio_state",
.version_id = 1,
.minimum_version_id = 1,
- .minimum_version_id_old = 1,
.pre_save = ide_drive_pio_pre_save,
.post_load = ide_drive_pio_post_load,
.fields = (VMStateField []) {
@@ -275,7 +274,6 @@ const VMStateDescription vmstate_ide_drive = {
.name = "ide_drive",
.version_id = 3,
.minimum_version_id = 0,
- .minimum_version_id_old = 0,
.post_load = ide_drive_post_load,
.fields = (VMStateField []) {
.... several fields ....
diff --git a/vmstate.c b/vmstate.c
index dbb7666..b5882fa 100644
--- a/vmstate.c
+++ b/vmstate.c
@@ -63,11 +63,12 @@ int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
if (version_id > vmsd->version_id) {
return -EINVAL;
}
- if (version_id < vmsd->minimum_version_id_old) {
- return -EINVAL;
- }
if (version_id < vmsd->minimum_version_id) {
- return vmsd->load_state_old(f, opaque, version_id);
+ if (vmsd->load_state_old &&
+ version_id >= vmsd->minimum_version_id_old) {
+ return vmsd->load_state_old(f, opaque, version_id);
+ }
+ return -EINVAL;
}
if (vmsd->pre_load) {
int ret = vmsd->pre_load(opaque);
--
1.9.0
next prev parent reply other threads:[~2014-05-05 20:31 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-05 20:29 [Qemu-devel] [PULL 00/36] migration queue Juan Quintela
2014-05-05 20:29 ` [Qemu-devel] [PATCH 01/36] vmstate: reduce code duplication Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 02/36] vmstate: add VMS_MUST_EXIST Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 03/36] vmstate: add VMSTATE_VALIDATE Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 04/36] virtio-net: fix buffer overflow on invalid state load Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 05/36] virtio-net: out-of-bounds buffer write " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 06/36] virtio: " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 07/36] ahci: fix buffer overrun " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 08/36] hpet: " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 09/36] hw/pci/pcie_aer.c: fix buffer overruns " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 10/36] pl022: fix buffer overun " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 11/36] vmstate: fix buffer overflow in target-arm/machine.c Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 12/36] virtio: avoid buffer overrun on incoming migration Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 13/36] virtio: validate num_sg when mapping Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 14/36] pxa2xx: avoid buffer overrun on incoming migration Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 15/36] ssd0323: fix buffer overun on invalid state load Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 16/36] tsc210x: fix buffer overrun " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 17/36] zaurus: " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 18/36] virtio-scsi: " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 19/36] vmstate: s/VMSTATE_INT32_LE/VMSTATE_INT32_POSITIVE_LE/ Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 20/36] usb: sanity check setup_index+setup_len in post_load Juan Quintela
2014-05-05 20:30 ` Juan Quintela [this message]
2014-05-05 20:30 ` [Qemu-devel] [PATCH 22/36] ssi-sd: fix buffer overrun on invalid state load Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 23/36] openpic: avoid buffer overrun on incoming migration Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 24/36] virtio-net: out-of-bounds buffer write on load Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 25/36] virtio: validate config_len " Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 26/36] Disallow outward migration while awaiting incoming migration Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 27/36] Make qemu_peek_buffer loop until it gets it's data Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 28/36] Count used RAMBlock pages for migration_dirty_pages Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 29/36] Provide init function for ram migration Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 30/36] Init the XBZRLE.lock in ram_mig_init Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 31/36] Coverity: Fix failure path for qemu_accept in migration Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 32/36] migration: remove duplicate code Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 33/36] XBZRLE: Fix one XBZRLE corruption issues Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 34/36] migration: Add counts of updating the dirty bitmap Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 35/36] migration: expose the bitmap_sync_count to the end Juan Quintela
2014-05-05 20:30 ` [Qemu-devel] [PATCH 36/36] migration: expose xbzrle cache miss rate Juan Quintela
2014-05-07 15:09 ` [Qemu-devel] [PULL 00/36] migration queue Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1399321834-31310-22-git-send-email-quintela@redhat.com \
--to=quintela@redhat.com \
--cc=mst@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).