]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
qemu: turn qemuDomainObjExitMonitor into void
authorJán Tomko <jtomko@redhat.com>
Wed, 24 Nov 2021 12:41:09 +0000 (13:41 +0100)
committerJán Tomko <jtomko@redhat.com>
Wed, 1 Dec 2021 09:56:58 +0000 (10:56 +0100)
This reverts my
    commit dc2fd51fd727bbb6de172e0ca4b7dd307bb99180
    Check for domain liveness in qemuDomainObjExitMonitor
which fixed the symptoms of the bug later fixed by
    commit 81f50cb92d16643bcd749e3ab5b404b8b7cec643
    qemu: Avoid calling qemuProcessStop without a job

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
src/qemu/THREADS.txt
src/qemu/qemu_domain.c
src/qemu/qemu_domain.h

index ff10bef9a075a05138ed79ac5616dad9901642d9..98aa3165e30fdac9edeebe348bfb9fb390d8b09d 100644 (file)
@@ -170,11 +170,6 @@ To acquire the QEMU monitor lock
     - Acquires the virDomainObj *lock
 
   These functions must not be used by an asynchronous job.
-  Note that the virDomainObj is unlocked during the time in
-  monitor and it can be changed, e.g. if QEMU dies, qemuProcessStop
-  may free the live domain definition and put the persistent
-  definition back in vm->def. The callers should check the return
-  value of ExitMonitor to see if the domain is still alive.
 
 
 To acquire the QEMU monitor lock as part of an asynchronous job
index 94b4081da61aae12c083bfbefa0c03bee239c62d..741123fe53d01f6d0c090908f0cac6051bcbd322 100644 (file)
@@ -5893,24 +5893,11 @@ void qemuDomainObjEnterMonitor(virQEMUDriver *driver,
 /* obj must NOT be locked before calling
  *
  * Should be paired with an earlier qemuDomainObjEnterMonitor() call
- *
- * Returns -1 if the domain is no longer alive after exiting the monitor.
- * In that case, the caller should be careful when using obj's data,
- * e.g. the live definition in vm->def has been freed by qemuProcessStop
- * and replaced by the persistent definition, so pointers stolen
- * from the live definition could no longer be valid.
  */
-int qemuDomainObjExitMonitor(virQEMUDriver *driver,
-                             virDomainObj *obj)
+void qemuDomainObjExitMonitor(virQEMUDriver *driver,
+                              virDomainObj *obj)
 {
     qemuDomainObjExitMonitorInternal(driver, obj);
-    if (!virDomainObjIsActive(obj)) {
-        if (virGetLastErrorCode() == VIR_ERR_OK)
-            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
-                           _("domain is no longer running"));
-        return -1;
-    }
-    return 0;
 }
 
 /*
index 596add616d641d0bb5b8e6485bea2e7914c0cf20..8173c39cdb11c4dda7e784c186316a6a4e02039c 100644 (file)
@@ -487,8 +487,8 @@ qemuMonitor *qemuDomainGetMonitor(virDomainObj *vm)
 void qemuDomainObjEnterMonitor(virQEMUDriver *driver,
                                virDomainObj *obj)
     ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
-int qemuDomainObjExitMonitor(virQEMUDriver *driver,
-                             virDomainObj *obj)
+void qemuDomainObjExitMonitor(virQEMUDriver *driver,
+                              virDomainObj *obj)
     ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
 int qemuDomainObjEnterMonitorAsync(virQEMUDriver *driver,
                                    virDomainObj *obj,