[libvirt] [PATCH 2/2] qemu: Allow inactive domains in qemuDomainGetControlInfo()

Peter Krempa pkrempa at redhat.com
Thu Feb 19 11:02:28 UTC 2015


Inactive domains can still be stuck in a job or other problems. Add a
way to detect it.
---
 src/qemu/qemu_driver.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
index dda9ab7..484419e 100644
--- a/src/qemu/qemu_driver.c
+++ b/src/qemu/qemu_driver.c
@@ -2678,12 +2678,6 @@ qemuDomainGetControlInfo(virDomainPtr dom,
     if (virDomainGetControlInfoEnsureACL(dom->conn, vm->def) < 0)
         goto cleanup;

-    if (!virDomainObjIsActive(vm)) {
-        virReportError(VIR_ERR_OPERATION_INVALID,
-                       "%s", _("domain is not running"));
-        goto cleanup;
-    }
-
     priv = vm->privateData;

     memset(info, 0, sizeof(*info));
-- 
2.2.2




More information about the libvir-list mailing list