Skip to content

Commit

Permalink
hmp: migrate command (without -d) now blocks correctly
Browse files Browse the repository at this point in the history
This patch fixes a timing issue that migrate command (without -d) does not
block in some cases.

The original version of hmp.c:hmp_migrate_status_cb checks if the
migration status is 'active' or not to detect the completion of a migration.

However, if this function is executed when the migration status is stil
'setup' (the status before 'active'), migration command returns
immediately even if the user does not specify -d option.

Signed-off-by: Soramichi Akiyama <[email protected]>
Signed-off-by: Luiz Capitulino <[email protected]>
  • Loading branch information
Soramichi AKIYAMA authored and Luiz Capitulino committed Feb 17, 2014
1 parent 933b19e commit dde3a21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,8 @@ static void hmp_migrate_status_cb(void *opaque)
MigrationInfo *info;

info = qmp_query_migrate(NULL);
if (!info->has_status || strcmp(info->status, "active") == 0) {
if (!info->has_status || strcmp(info->status, "active") == 0 ||
strcmp(info->status, "setup") == 0) {
if (info->has_disk) {
int progress;

Expand Down

0 comments on commit dde3a21

Please sign in to comment.