summaryrefslogtreecommitdiffstats
path: root/vl.c
diff options
context:
space:
mode:
authorDr. David Alan Gilbert2019-02-27 17:49:00 +0100
committerDr. David Alan Gilbert2019-03-06 11:49:17 +0100
commit892ae715b6bc8107fccaa3caeb2a5bd4f6d2cb37 (patch)
tree4e2b3267befee0264ccbfd5b383e340f3d91d342 /vl.c
parentmigration/rdma: Fix qemu_rdma_cleanup null check (diff)
downloadqemu-892ae715b6bc8107fccaa3caeb2a5bd4f6d2cb37.tar.gz
qemu-892ae715b6bc8107fccaa3caeb2a5bd4f6d2cb37.tar.xz
qemu-892ae715b6bc8107fccaa3caeb2a5bd4f6d2cb37.zip
migration: Cleanup during exit
Currently we cleanup the migration object as we exit main after the main_loop finishes; however if there's a migration running things get messy and we can end up with the migration thread still trying to access freed structures. We now take a ref to the object around the migration thread itself, so the act of dropping the ref during exit doesn't cause us to lose the state until the thread quits. Cancelling the migration during migration also tries to get the thread to quit. We do this a bit earlier; so hopefully migration gets out of the way before all the devices etc are freed. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Tested-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20190227164900.16378-1-dgilbert@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/vl.c b/vl.c
index fd0d51320d..5be8cf4f11 100644
--- a/vl.c
+++ b/vl.c
@@ -4579,6 +4579,12 @@ int main(int argc, char **argv, char **envp)
gdbserver_cleanup();
+ /*
+ * cleaning up the migration object cancels any existing migration
+ * try to do this early so that it also stops using devices.
+ */
+ migration_shutdown();
+
/* No more vcpu or device emulation activity beyond this point */
vm_shutdown();
@@ -4594,7 +4600,6 @@ int main(int argc, char **argv, char **envp)
monitor_cleanup();
qemu_chr_cleanup();
user_creatable_cleanup();
- migration_object_finalize();
/* TODO: unref root container, check all devices are ok */
return 0;