migration: Allow migrate_fd_connect to take an Error *
authorDr. David Alan Gilbert <dgilbert@redhat.com>
Fri, 15 Dec 2017 17:16:54 +0000 (17:16 +0000)
committerDr. David Alan Gilbert <dgilbert@redhat.com>
Tue, 6 Feb 2018 10:55:12 +0000 (10:55 +0000)
Allow whatever is performing the connection to pass migrate_fd_connect
an error to indicate there was a problem during connection, an allow
us to clean up.

The caller must free the error.

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
migration/channel.c
migration/migration.c
migration/migration.h
migration/rdma.c

index 70ec7ea3b79a6d45debff2b584efd91cd7602df7..fdb7ddbd17c9c55671501f750e4c844c5da4d46d 100644 (file)
@@ -78,6 +78,6 @@ void migration_channel_connect(MigrationState *s,
 
         s->to_dst_file = f;
 
-        migrate_fd_connect(s);
+        migrate_fd_connect(s, NULL);
     }
 }
index c99a4e62d7f48b62f879c048c6191b7ea678af9d..1fbd304c66b97db7f4c43c881976df2aa1adde27 100644 (file)
@@ -2378,10 +2378,15 @@ static void *migration_thread(void *opaque)
     return NULL;
 }
 
-void migrate_fd_connect(MigrationState *s)
+void migrate_fd_connect(MigrationState *s, Error *error_in)
 {
     s->expected_downtime = s->parameters.downtime_limit;
     s->cleanup_bh = qemu_bh_new(migrate_fd_cleanup, s);
+    if (error_in) {
+        migrate_fd_error(s, error_in);
+        migrate_fd_cleanup(s);
+        return;
+    }
 
     qemu_file_set_blocking(s->to_dst_file, true);
     qemu_file_set_rate_limit(s->to_dst_file,
index 786d971ce2e6c5f6f2912b2a1b4d2f703ddbb5d1..d3b214e5ba8267867000345c3084b350f3692e49 100644 (file)
@@ -190,7 +190,7 @@ uint64_t migrate_max_downtime(void);
 void migrate_set_error(MigrationState *s, const Error *error);
 void migrate_fd_error(MigrationState *s, const Error *error);
 
-void migrate_fd_connect(MigrationState *s);
+void migrate_fd_connect(MigrationState *s, Error *error_in);
 
 MigrationState *migrate_init(void);
 bool migration_is_blocked(Error **errp);
index 9d5a42401174753fbdc6b9b47b60436106e78143..da474fc19f81cd33b1ce4eb4eb94a2f000976912 100644 (file)
@@ -3758,7 +3758,7 @@ void rdma_start_outgoing_migration(void *opaque,
     trace_rdma_start_outgoing_migration_after_rdma_connect();
 
     s->to_dst_file = qemu_fopen_rdma(rdma, "wb");
-    migrate_fd_connect(s);
+    migrate_fd_connect(s, NULL);
     return;
 err:
     g_free(rdma);