]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
when dumping code don't keep Xen domain live
authorDaniel Veillard <veillard@redhat.com>
Thu, 4 Sep 2008 09:11:37 +0000 (09:11 +0000)
committerDaniel Veillard <veillard@redhat.com>
Thu, 4 Sep 2008 09:11:37 +0000 (09:11 +0000)
* src/xend_internal.c: patch from John Levon shutting down a live
  domain is just more hazardous
Daniel

ChangeLog
src/xend_internal.c

index a17aedc1e2843d8c17e00adb884a6d563bae89da..2fa070d8ebd1909fc3bc2526f1f2f08d8cad6ac3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep  4 11:09:20 CEST 2008 Daniel Veillard <veillard@redhat.com>
+
+       * 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 <veillard@redhat.com>
 
        * src/xend_internal.c src/xs_internal.c: use poweroff instead of halt
index 20162d8beedb5d1e68c8ae3bc7d507505fb9afa8..e9ea09b6075041533ad6929b1fae6a2f29f1d96c 100644 (file)
@@ -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);
 }
 
 /**