aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2017-06-28 11:52:24 +0200
committerDr. David Alan Gilbert <dgilbert@redhat.com>2017-07-10 17:52:21 +0100
commit9907e842d70165ae0059fcd8f770342718c0fa0f (patch)
tree8490b6e05fa7936b415d580c4f6b9134556e8d33 /hw
parentc8d3ff384f14634fde1c3ea6bcdcd7e06c29df29 (diff)
downloadqemu-9907e842d70165ae0059fcd8f770342718c0fa0f.zip
qemu-9907e842d70165ae0059fcd8f770342718c0fa0f.tar.gz
qemu-9907e842d70165ae0059fcd8f770342718c0fa0f.tar.bz2
migration: Rename save_live_setup() to save_setup()
We are going to use it now for more than save live regions. Once there rename qemu_savevm_state_begin() to qemu_savevm_state_setup(). Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Message-Id: <20170628095228.4661-2-quintela@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/ppc/spapr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index 0ee9fac..ba87be5 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -1953,7 +1953,7 @@ static void htab_cleanup(void *opaque)
}
static SaveVMHandlers savevm_htab_handlers = {
- .save_live_setup = htab_save_setup,
+ .save_setup = htab_save_setup,
.save_live_iterate = htab_save_iterate,
.save_live_complete_precopy = htab_save_complete,
.cleanup = htab_cleanup,