render / rpms / libvirt

Forked from rpms/libvirt 5 months ago
Clone
a41c76
From 3d1a4ab1ce9fce88a759e11532b6891903f86a4a Mon Sep 17 00:00:00 2001
a41c76
Message-Id: <3d1a4ab1ce9fce88a759e11532b6891903f86a4a@dist-git>
a41c76
From: Peter Krempa <pkrempa@redhat.com>
a41c76
Date: Fri, 3 Apr 2020 14:32:57 +0200
a41c76
Subject: [PATCH] qemu: checkpoint: Allow checkpoint redefine for offline VMs
a41c76
MIME-Version: 1.0
a41c76
Content-Type: text/plain; charset=UTF-8
a41c76
Content-Transfer-Encoding: 8bit
a41c76
a41c76
Skip the liveness and capability checks when redefining checkpoints as
a41c76
we don't need qemu interactions to update the metadata.
a41c76
a41c76
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
a41c76
Reviewed-by: Eric Blake <eblake@redhat.com>
a41c76
(cherry picked from commit 135a0b3f7142a8d4f591bb24b3ae7d0f36877bf7)
a41c76
a41c76
https://bugzilla.redhat.com/show_bug.cgi?id=1819755
a41c76
a41c76
Message-Id: <f1d392d78abde1ffbe1c0244d442bc0ec6aa18a6.1585916255.git.pkrempa@redhat.com>
a41c76
Reviewed-by: Ján Tomko <jtomko@redhat.com>
a41c76
---
a41c76
 src/qemu/qemu_checkpoint.c | 20 +++++++++++---------
a41c76
 1 file changed, 11 insertions(+), 9 deletions(-)
a41c76
a41c76
diff --git a/src/qemu/qemu_checkpoint.c b/src/qemu/qemu_checkpoint.c
a41c76
index 16480518fa..34cf122eb3 100644
a41c76
--- a/src/qemu/qemu_checkpoint.c
a41c76
+++ b/src/qemu/qemu_checkpoint.c
a41c76
@@ -649,16 +649,18 @@ qemuCheckpointCreateXML(virDomainPtr domain,
a41c76
         update_current = false;
a41c76
     }
a41c76
 
a41c76
-    if (!virDomainObjIsActive(vm)) {
a41c76
-        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
a41c76
-                       _("cannot create checkpoint for inactive domain"));
a41c76
-        return NULL;
a41c76
-    }
a41c76
+    if (!redefine) {
a41c76
+        if (!virDomainObjIsActive(vm)) {
a41c76
+            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
a41c76
+                           _("cannot create checkpoint for inactive domain"));
a41c76
+            return NULL;
a41c76
+        }
a41c76
 
a41c76
-    if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_INCREMENTAL_BACKUP)) {
a41c76
-        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
a41c76
-                       _("incremental backup is not supported yet"));
a41c76
-        return NULL;
a41c76
+        if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_INCREMENTAL_BACKUP)) {
a41c76
+            virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
a41c76
+                           _("incremental backup is not supported yet"));
a41c76
+            return NULL;
a41c76
+        }
a41c76
     }
a41c76
 
a41c76
     if (!(def = virDomainCheckpointDefParseString(xmlDesc, driver->xmlopt,
a41c76
-- 
a41c76
2.26.0
a41c76