This is an incremental step in converting vmstate loading code to report via Error objects instead of printing directly to the console/monitor.
Signed-off-by: Daniel P. Berrangé <berra...@redhat.com> --- migration/migration.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/migration/migration.c b/migration/migration.c index 3f0586842d..32a61b04bf 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -3146,7 +3146,7 @@ typedef enum MigThrError { MIG_THR_ERR_FATAL = 2, } MigThrError; -static int postcopy_resume_handshake(MigrationState *s) +static int postcopy_resume_handshake(MigrationState *s, Error **errp) { qemu_savevm_send_postcopy_resume(s->to_dst_file); @@ -3158,13 +3158,14 @@ static int postcopy_resume_handshake(MigrationState *s) return 0; } + error_setg(errp, "postcopy resume handshake failed state %x != %x", + s->state, MIGRATION_STATUS_POSTCOPY_ACTIVE); return -1; } /* Return zero if success, or <0 for error */ static int postcopy_do_resume(MigrationState *s) { - int ret; Error *local_err = NULL; /* @@ -3180,10 +3181,9 @@ static int postcopy_do_resume(MigrationState *s) * Last handshake with destination on the resume (destination will * switch to postcopy-active afterwards) */ - ret = postcopy_resume_handshake(s); - if (ret) { - error_report("%s: handshake failed: %d", __func__, ret); - return ret; + if (postcopy_resume_handshake(s, &local_err) < 0) { + error_report_err(local_err); + return -1; } return 0; -- 2.29.2