mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
migration: rename functions to starting migrations
Apply the following renames for starting incoming migration: process_incoming_migration -> migration_fd_process_incoming migration_set_incoming_channel -> migration_channel_process_incoming migration_tls_set_incoming_channel -> migration_tls_channel_process_incoming and for starting outgoing migration: migration_set_outgoing_channel -> migration_channel_connect migration_tls_set_outgoing_channel -> migration_tls_channel_connect Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Message-id: 1464776234-9910-3-git-send-email-berrange@redhat.com Message-Id: <1464776234-9910-3-git-send-email-berrange@redhat.com> Signed-off-by: Amit Shah <amit.shah@redhat.com>
This commit is contained in:
parent
bdbba12b6f
commit
22724f4921
7 changed files with 40 additions and 40 deletions
|
@ -38,7 +38,7 @@ void exec_start_outgoing_migration(MigrationState *s, const char *command, Error
|
|||
return;
|
||||
}
|
||||
|
||||
migration_set_outgoing_channel(s, ioc, NULL);
|
||||
migration_channel_connect(s, ioc, NULL);
|
||||
object_unref(OBJECT(ioc));
|
||||
}
|
||||
|
||||
|
@ -46,7 +46,7 @@ static gboolean exec_accept_incoming_migration(QIOChannel *ioc,
|
|||
GIOCondition condition,
|
||||
gpointer opaque)
|
||||
{
|
||||
migration_set_incoming_channel(migrate_get_current(), ioc);
|
||||
migration_channel_process_incoming(migrate_get_current(), ioc);
|
||||
object_unref(OBJECT(ioc));
|
||||
return FALSE; /* unregister */
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue