[libvirt] [PATCH] xen: Fix domain dump

Jiri Denemark jdenemar at redhat.com
Tue Oct 26 10:02:04 UTC 2010


Remove redundant 'live' parameter which caused an error from xend:

    "xend.err 'Too many values for live'"
---
 src/xen/xend_internal.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/xen/xend_internal.c b/src/xen/xend_internal.c
index b90c331..bce911e 100644
--- a/src/xen/xend_internal.c
+++ b/src/xen/xend_internal.c
@@ -3026,7 +3026,7 @@ xenDaemonDomainCoreDump(virDomainPtr domain, const char *filename,
     }
 
     return xend_op(domain->conn, domain->name,
-                   "op", "dump", "file", filename, "live", "0",
+                   "op", "dump", "file", filename,
                    "live", (flags & VIR_DUMP_LIVE ? "1" : "0"),
                    "crash", (flags & VIR_DUMP_CRASH ? "1" : "0"),
                    NULL);
-- 
1.7.3.2




More information about the libvir-list mailing list