summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLongpeng(Mike)2020-08-06 09:40:30 +0200
committerDr. David Alan Gilbert2020-08-28 14:34:52 +0200
commit9ba3b2baa1f06e772c84f0ab77146428a2b19db1 (patch)
tree22a7f0cf7b0e037a35bb2d873b2059bbef6a9f71
parentmigration: unify the framework of socket-type channel (diff)
downloadqemu-9ba3b2baa1f06e772c84f0ab77146428a2b19db1.tar.gz
qemu-9ba3b2baa1f06e772c84f0ab77146428a2b19db1.tar.xz
qemu-9ba3b2baa1f06e772c84f0ab77146428a2b19db1.zip
migration: add vsock as data channel support
The vsock channel is more widely use in some new features, for example, the Nitro/Enclave. It can also be used as the migration channel. Signed-off-by: Longpeng(Mike) <longpeng2@huawei.com> Message-Id: <20200806074030.174-3-longpeng2@huawei.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
-rw-r--r--migration/migration.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/migration/migration.c b/migration/migration.c
index ac37a386dd..58a5452471 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -384,7 +384,8 @@ void qemu_start_incoming_migration(const char *uri, Error **errp)
if (!strcmp(uri, "defer")) {
deferred_incoming_migration(errp);
} else if (strstart(uri, "tcp:", &p) ||
- strstart(uri, "unix:", NULL)) {
+ strstart(uri, "unix:", NULL) ||
+ strstart(uri, "vsock:", NULL)) {
socket_start_incoming_migration(p ? p : uri, errp);
#ifdef CONFIG_RDMA
} else if (strstart(uri, "rdma:", &p)) {
@@ -2102,7 +2103,8 @@ void qmp_migrate(const char *uri, bool has_blk, bool blk,
}
if (strstart(uri, "tcp:", &p) ||
- strstart(uri, "unix:", NULL)) {
+ strstart(uri, "unix:", NULL) ||
+ strstart(uri, "vsock:", NULL)) {
socket_start_outgoing_migration(s, p ? p : uri, &local_err);
#ifdef CONFIG_RDMA
} else if (strstart(uri, "rdma:", &p)) {