[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH spice-server 11/13] server: turn spice_server_migrat
From: |
Yonit Halperin |
Subject: |
[Qemu-devel] [PATCH spice-server 11/13] server: turn spice_server_migrate_start into a valid call |
Date: |
Wed, 21 Sep 2011 18:51:21 +0300 |
We will add a qemu call to spice_server_migrate_start when migration starts.
For now, it does nothing, but we may need this notification in the future.
Signed-off-by: Yonit Halperin <address@hidden>
---
server/reds.c | 8 +-------
1 files changed, 1 insertions(+), 7 deletions(-)
diff --git a/server/reds.c b/server/reds.c
index 6d2269c..76aa0ed 100644
--- a/server/reds.c
+++ b/server/reds.c
@@ -5143,16 +5143,10 @@ SPICE_GNUC_VISIBLE int
spice_server_migrate_info(SpiceServer *s, const char* des
SPICE_GNUC_VISIBLE int spice_server_migrate_start(SpiceServer *s)
{
ASSERT(reds == s);
-
- if (1) {
- /* seamless doesn't work, fixing needs protocol change. */
- return -1;
- }
-
+ red_printf("");
if (!reds->mig_spice) {
return -1;
}
- reds_mig_started();
return 0;
}
--
1.7.4.4
- [Qemu-devel] [PATCH spice-server 00/13] semi-seamless migration v2 (RHBZ #738266, 725009), Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 03/13] configure: spice-protocol >= 0.8.2 (semi-seamless migration protocol), Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 06/13] server: send SPICE_MSG_MAIN_MIGRATE_END on spice_server_migrate_end, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 05/13] spice.proto: add SPICE_MSG_MAIN_MIGRATE_END & SPICE_MSGC_MAIN_MIGRATE_END, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 07/13] server: move SPICE_MSG_MAIN_INIT sending code to a separate routine, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 08/13] server: move the linking of channels to a separate routine, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 09/13] server: handling semi-seamless migration in the target side, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 11/13] server: turn spice_server_migrate_start into a valid call,
Yonit Halperin <=
- [Qemu-devel] [PATCH spice-server 13/13] Release 0.8.3, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 04/13] server, proto: tell the client to connect to the migration target before migraton starts, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 01/13] server/spice.h: semi-seamless migration interface, RHBZ #738266, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 12/13] server: fall back to switch host scheme in case semi-seamless connection to target fails, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 10/13] server: call migrate_connect_complete callback when no client is connected, Yonit Halperin, 2011/09/21
- [Qemu-devel] [PATCH spice-server 02/13] server: handle migration interface addition, Yonit Halperin, 2011/09/21
- Re: [Qemu-devel] [PATCH spice-server 00/13] semi-seamless migration v2 (RHBZ #738266, 725009), Alon Levy, 2011/09/22