migration: fix inability to save VM after snapshot
authorDenis V. Lunev <den@openvz.org>
Wed, 15 Jun 2016 15:06:43 +0000 (18:06 +0300)
committerAmit Shah <amit.shah@redhat.com>
Fri, 17 Jun 2016 12:53:57 +0000 (18:23 +0530)
commit6dcf66681aea2a371ddd63770bf80615652f5c94
tree2ad9d0aee91ac83236860493346b282e03105380
parent023ad1a6e9296470d8fd81db3bf0379057fc8994
migration: fix inability to save VM after snapshot

The following sequence of operations fails:
    virsh start vm
    virsh snapshot-create vm
    virshh save vm --file file
with the following error
    error: Failed to save domain vm to file
    error: internal error: unable to execute QEMU command 'migrate':
    There's a migration process in progress

The problem is that qemu_savevm_state() calls migrate_init() which sets
migration state to MIGRATION_STATUS_SETUP and never cleaned it up.
This patch do the job.

Signed-off-by: Denis V. Lunev <den@openvz.org>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
CC: Juan Quintela <quintela@redhat.com>
CC: Amit Shah <amit.shah@redhat.com>
Message-Id: <1466003203-26263-1-git-send-email-den@openvz.org>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
migration/savevm.c