[libvirt] [PATCH 2/7] Fix graphics configuration inconsistency between xm and sxpr

Markus Armbruster armbru at redhat.com
Tue Dec 23 15:05:12 UTC 2008


xenDaemonFormatSxpr() generates old-style HVM graphics configuration
when xendConfigVersion is below 4.  xenXMDomainConfigFormat() does
that always.  Change it to make it consistent with
xenDaemonFormatSxpr().

Signed-off-by: Markus Armbruster <armbru at redhat.com>
---
 src/xm_internal.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/xm_internal.c b/src/xm_internal.c
index b3be199..7cbfc7e 100644
--- a/src/xm_internal.c
+++ b/src/xm_internal.c
@@ -2049,7 +2049,7 @@ virConfPtr xenXMDomainConfigFormat(virConnectPtr conn,
     }
 
     if (def->graphics) {
-        if (hvm || priv->xendConfigVersion < 3) {
+        if (priv->xendConfigVersion < (hvm ? 4 : 3)) {
             if (def->graphics->type == VIR_DOMAIN_GRAPHICS_TYPE_SDL) {
                 if (xenXMConfigSetInt(conf, "sdl", 1) < 0)
                     goto no_memory;
-- 
1.5.4.3




More information about the libvir-list mailing list