[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 17/18] migration: add prefix for local migration to
From: |
Lei Li |
Subject: |
[Qemu-devel] [PATCH 17/18] migration: add prefix for local migration to incoming migration |
Date: |
Wed, 21 Aug 2013 15:18:55 +0800 |
Signed-off-by: Lei Li <address@hidden>
---
migration.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/migration.c b/migration.c
index 2471664..17cf2fd 100644
--- a/migration.c
+++ b/migration.c
@@ -81,6 +81,9 @@ void qemu_start_incoming_migration(const char *uri, Error
**errp)
unix_start_incoming_migration(p, errp);
else if (strstart(uri, "fd:", &p))
fd_start_incoming_migration(p, errp);
+ else if (strstart(uri, "local:", &p))
+ local_start_incoming_migration(p, errp);
+
#endif
else {
error_setg(errp, "unknown migration protocol: %s", uri);
--
1.7.7.6
- [Qemu-devel] [PATCH 15/18] migration: adjust migration_thread for local migration, (continued)
[Qemu-devel] [PATCH 17/18] migration: add prefix for local migration to incoming migration,
Lei Li <=
[Qemu-devel] [PATCH 16/18] migration-local: implementation of incoming part, Lei Li, 2013/08/21
[Qemu-devel] [PATCH 18/18] hmp: better fomat for info migrate_capabilities, Lei Li, 2013/08/21