migration: Cleanup during exit
commit892ae715b6bc8107fccaa3caeb2a5bd4f6d2cb37
authorDr. David Alan Gilbert <dgilbert@redhat.com>
Wed, 27 Feb 2019 16:49:00 +0000 (27 16:49 +0000)
committerDr. David Alan Gilbert <dgilbert@redhat.com>
Wed, 6 Mar 2019 10:49:17 +0000 (6 10:49 +0000)
tree4e2b3267befee0264ccbfd5b383e340f3d91d342
parentcf75e2684938413f0bbe95f5a4b7db5c845e42c8
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>
include/migration/misc.h
migration/migration.c
vl.c