mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
migration: Route errors down through migration_channel_connect
Route async errors (especially from sockets) down through migration_channel_connect and on to migrate_fd_connect where they can be cleaned up. 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>
This commit is contained in:
parent
cce8040bb0
commit
688a3dcba9
7 changed files with 24 additions and 26 deletions
|
@ -118,11 +118,10 @@ static void migration_tls_outgoing_handshake(QIOTask *task,
|
|||
|
||||
if (qio_task_propagate_error(task, &err)) {
|
||||
trace_migration_tls_outgoing_handshake_error(error_get_pretty(err));
|
||||
migrate_fd_error(s, err);
|
||||
} else {
|
||||
trace_migration_tls_outgoing_handshake_complete();
|
||||
migration_channel_connect(s, ioc, NULL);
|
||||
}
|
||||
migration_channel_connect(s, ioc, NULL, err);
|
||||
object_unref(OBJECT(ioc));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue