[Spice-commits] configure.ac NEWS spice/enums.h spice/protocol.h

Alon Levy alon at kemper.freedesktop.org
Sun Oct 23 03:47:13 PDT 2011


 NEWS             |    4 ++++
 configure.ac     |    2 +-
 spice/enums.h    |    2 ++
 spice/protocol.h |    6 +++++-
 4 files changed, 12 insertions(+), 2 deletions(-)

New commits:
commit dbe61d9320c7a4c23b58ff012769b05ad20d0440
Author: Yonit Halperin <yhalperi at redhat.com>
Date:   Tue Sep 13 12:23:20 2011 +0300

    Release 0.9.1
    
    Cherry-pick of abfdf4d8abf95d003678af5df814f3b1be1fd092 (Release 0.8.2)
    
    semi-seamless migration RHBZ 738262
    
    Conflicts:
    
    	NEWS
    	configure.ac

diff --git a/NEWS b/NEWS
index e1e797c..2378b2c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+Major changes in 0.9.1 (same as 0.8.2 in 0.8 branch)
+======================
+* Add support for semi-seamless migration
+
 Major changes in 0.9.0
 ======================
 * Add support for generic spicevmc chardev passthrough messages
diff --git a/configure.ac b/configure.ac
index e8ae79b..0388120 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_PREREQ([2.57])
 
 m4_define([SPICE_MAJOR], 0)
 m4_define([SPICE_MINOR], 9)
-m4_define([SPICE_MICRO], 0)
+m4_define([SPICE_MICRO], 1)
 
 AC_INIT(spice-protocol, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice-protocol)
 
diff --git a/spice/enums.h b/spice/enums.h
index 8d68b36..a587b00 100644
--- a/spice/enums.h
+++ b/spice/enums.h
@@ -367,6 +367,7 @@ enum {
     SPICE_MSG_MAIN_AGENT_DATA,
     SPICE_MSG_MAIN_AGENT_TOKEN,
     SPICE_MSG_MAIN_MIGRATE_SWITCH_HOST,
+    SPICE_MSG_MAIN_MIGRATE_END,
 
     SPICE_MSG_END_MAIN
 };
@@ -380,6 +381,7 @@ enum {
     SPICE_MSGC_MAIN_AGENT_START,
     SPICE_MSGC_MAIN_AGENT_DATA,
     SPICE_MSGC_MAIN_AGENT_TOKEN,
+    SPICE_MSGC_MAIN_MIGRATE_END,
 
     SPICE_MSGC_END_MAIN
 };
diff --git a/spice/protocol.h b/spice/protocol.h
index 40027be..ddfe84b 100644
--- a/spice/protocol.h
+++ b/spice/protocol.h
@@ -37,7 +37,7 @@
 
 #define SPICE_MAGIC (*(uint32_t*)"REDQ")
 #define SPICE_VERSION_MAJOR 2
-#define SPICE_VERSION_MINOR 0
+#define SPICE_VERSION_MINOR 1
 
 // Encryption & Ticketing Parameters
 #define SPICE_MAX_PASSWORD_LENGTH 60
@@ -111,6 +111,10 @@ enum {
     SPICE_RECORD_CAP_VOLUME,
 };
 
+enum {
+    SPICE_MAIN_CAP_SEMI_SEAMLESS_MIGRATE,
+};
+
 #include <spice/end-packed.h>
 
 #endif /* _H_SPICE_PROTOCOL */


More information about the Spice-commits mailing list