diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2023-10-24 12:40:38 +0400 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-10-30 17:44:03 +0100 |
commit | 4d8bdc2ae043a572a2ec6f8788123935a2de0943 (patch) | |
tree | 0a4fa377f4d3eea7cf4389bdd50ac1a8e681154c /include/migration | |
parent | bc3d41a9f62905629d6da98f68cc15069d2374c6 (diff) | |
download | qemu-4d8bdc2ae043a572a2ec6f8788123935a2de0943.zip qemu-4d8bdc2ae043a572a2ec6f8788123935a2de0943.tar.gz qemu-4d8bdc2ae043a572a2ec6f8788123935a2de0943.tar.bz2 |
migration: rename vmstate_save_needed->vmstate_section_needed
The function is used on save at this point. The following commits will
use it on load.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-ID: <20231024084043.2926316-5-marcandre.lureau@redhat.com>
Diffstat (limited to 'include/migration')
-rw-r--r-- | include/migration/vmstate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/migration/vmstate.h b/include/migration/vmstate.h index 1a31fb7..1af1818 100644 --- a/include/migration/vmstate.h +++ b/include/migration/vmstate.h @@ -1202,7 +1202,7 @@ int vmstate_save_state_v(QEMUFile *f, const VMStateDescription *vmsd, void *opaque, JSONWriter *vmdesc, int version_id, Error **errp); -bool vmstate_save_needed(const VMStateDescription *vmsd, void *opaque); +bool vmstate_section_needed(const VMStateDescription *vmsd, void *opaque); #define VMSTATE_INSTANCE_ID_ANY -1 |