multifd: cleanup the function multifd_channel_connect

Cleanup multifd_channel_connect

Signed-off-by: Li Zhang <lizhang@suse.de>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
master
Li Zhang 2021-12-22 12:30:48 +01:00 committed by Juan Quintela
parent b530ccde5d
commit e3f37b2ce6
1 changed files with 22 additions and 23 deletions

View File

@ -843,7 +843,9 @@ static bool multifd_channel_connect(MultiFDSendParams *p,
ioc, object_get_typename(OBJECT(ioc)), ioc, object_get_typename(OBJECT(ioc)),
migrate_get_current()->hostname, error); migrate_get_current()->hostname, error);
if (!error) { if (error) {
return false;
}
if (migrate_channel_requires_tls_upgrade(ioc)) { if (migrate_channel_requires_tls_upgrade(ioc)) {
multifd_tls_channel_connect(p, ioc, &error); multifd_tls_channel_connect(p, ioc, &error);
if (!error) { if (!error) {
@ -866,9 +868,6 @@ static bool multifd_channel_connect(MultiFDSendParams *p,
return true; return true;
} }
return false;
}
static void multifd_new_send_channel_cleanup(MultiFDSendParams *p, static void multifd_new_send_channel_cleanup(MultiFDSendParams *p,
QIOChannel *ioc, Error *err) QIOChannel *ioc, Error *err)
{ {