* [Qemu-devel] [PATCH 1/1] migration: fix inability to save VM after snapshot
@ 2016-06-15 15:06 Denis V. Lunev
2016-06-16 17:23 ` Dr. David Alan Gilbert
0 siblings, 1 reply; 2+ messages in thread
From: Denis V. Lunev @ 2016-06-15 15:06 UTC (permalink / raw)
To: qemu-devel; +Cc: den, Juan Quintela, Amit Shah
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>
CC: Juan Quintela <quintela@redhat.com>
CC: Amit Shah <amit.shah@redhat.com>
---
migration/savevm.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/migration/savevm.c b/migration/savevm.c
index 6c21231..749df1e 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -1149,10 +1149,12 @@ static int qemu_savevm_state(QEMUFile *f, Error **errp)
.shared = 0
};
MigrationState *ms = migrate_init(¶ms);
+ MigrationStatus status;
ms->to_dst_file = f;
if (migration_is_blocked(errp)) {
- return -EINVAL;
+ ret = -EINVAL;
+ goto done;
}
qemu_mutex_unlock_iothread();
@@ -1175,6 +1177,14 @@ static int qemu_savevm_state(QEMUFile *f, Error **errp)
if (ret != 0) {
error_setg_errno(errp, -ret, "Error while writing VM state");
}
+
+done:
+ if (ret != 0) {
+ status = MIGRATION_STATUS_FAILED;
+ } else {
+ status = MIGRATION_STATUS_COMPLETED;
+ }
+ migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
return ret;
}
--
2.5.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH 1/1] migration: fix inability to save VM after snapshot
2016-06-15 15:06 [Qemu-devel] [PATCH 1/1] migration: fix inability to save VM after snapshot Denis V. Lunev
@ 2016-06-16 17:23 ` Dr. David Alan Gilbert
0 siblings, 0 replies; 2+ messages in thread
From: Dr. David Alan Gilbert @ 2016-06-16 17:23 UTC (permalink / raw)
To: Denis V. Lunev; +Cc: qemu-devel, Amit Shah, Juan Quintela
* Denis V. Lunev (den@openvz.org) wrote:
> 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>
> CC: Juan Quintela <quintela@redhat.com>
> CC: Amit Shah <amit.shah@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
> ---
> migration/savevm.c | 12 +++++++++++-
> 1 file changed, 11 insertions(+), 1 deletion(-)
>
> diff --git a/migration/savevm.c b/migration/savevm.c
> index 6c21231..749df1e 100644
> --- a/migration/savevm.c
> +++ b/migration/savevm.c
> @@ -1149,10 +1149,12 @@ static int qemu_savevm_state(QEMUFile *f, Error **errp)
> .shared = 0
> };
> MigrationState *ms = migrate_init(¶ms);
> + MigrationStatus status;
> ms->to_dst_file = f;
>
> if (migration_is_blocked(errp)) {
> - return -EINVAL;
> + ret = -EINVAL;
> + goto done;
> }
>
> qemu_mutex_unlock_iothread();
> @@ -1175,6 +1177,14 @@ static int qemu_savevm_state(QEMUFile *f, Error **errp)
> if (ret != 0) {
> error_setg_errno(errp, -ret, "Error while writing VM state");
> }
> +
> +done:
> + if (ret != 0) {
> + status = MIGRATION_STATUS_FAILED;
> + } else {
> + status = MIGRATION_STATUS_COMPLETED;
> + }
> + migrate_set_state(&ms->state, MIGRATION_STATUS_SETUP, status);
> return ret;
> }
>
> --
> 2.5.0
>
>
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-06-16 17:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-15 15:06 [Qemu-devel] [PATCH 1/1] migration: fix inability to save VM after snapshot Denis V. Lunev
2016-06-16 17:23 ` Dr. David Alan Gilbert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).