From: Daniel Veillard Date: Thu, 4 Sep 2008 09:11:37 +0000 (+0000) Subject: when dumping code don't keep Xen domain live X-Git-Tag: LIBVIRT_0_4_6~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18626bd225472ec09eeba4fd241434c4b3717548;p=thirdparty%2Flibvirt.git when dumping code don't keep Xen domain live * src/xend_internal.c: patch from John Levon shutting down a live domain is just more hazardous Daniel --- diff --git a/ChangeLog b/ChangeLog index a17aedc1e2..2fa070d8eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 4 11:09:20 CEST 2008 Daniel Veillard + + * src/xend_internal.c: patch from John Levon shutting down a live + domain is just more hazardous + Thu Sep 4 11:05:59 CEST 2008 Daniel Veillard * src/xend_internal.c src/xs_internal.c: use poweroff instead of halt diff --git a/src/xend_internal.c b/src/xend_internal.c index 20162d8bee..e9ea09b607 100644 --- a/src/xend_internal.c +++ b/src/xend_internal.c @@ -3037,7 +3037,7 @@ xenDaemonDomainCoreDump(virDomainPtr domain, const char *filename, if (domain->id < 0) return(-1); return xend_op(domain->conn, domain->name, "op", "dump", "file", filename, - "live", "1", "crash", "0", NULL); + "live", "0", "crash", "0", NULL); } /**