[PATCH v2 4/7] migration: Report error in incoming migration

Fabiano Rosas posted 7 patches 10 months, 3 weeks ago
[PATCH v2 4/7] migration: Report error in incoming migration
Posted by Fabiano Rosas 10 months, 3 weeks ago
We're not currently reporting the errors set with migrate_set_error()
when incoming migration fails.

Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
---
 migration/migration.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/migration/migration.c b/migration/migration.c
index 454cd4ec1f..4e0fd24e14 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -699,6 +699,13 @@ process_incoming_migration_co(void *opaque)
     }
 
     if (ret < 0) {
+        MigrationState *s = migrate_get_current();
+
+        if (migrate_has_error(s)) {
+            WITH_QEMU_LOCK_GUARD(&s->error_mutex) {
+                error_report_err(s->error);
+            }
+        }
         error_report("load of migration failed: %s", strerror(-ret));
         goto fail;
     }
-- 
2.35.3