]> xenbits.xensource.com Git - libvirt.git/commitdiff
Revert "Separate out StateAutoStart from StateInitialize"
authorMichal Privoznik <mprivozn@redhat.com>
Fri, 1 Mar 2019 14:22:40 +0000 (15:22 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Wed, 6 Mar 2019 09:20:31 +0000 (10:20 +0100)
https://bugzilla.redhat.com/show_bug.cgi?id=1685151

This reverts commit e4a969092bda5b3b952963fdf6658895165040b7.

Now that drivers may call virConnectOpen() on secondary drivers, it
doesn't make much sense to have autostart separated from driver
initialization callback. In fact, it creates a problem because one
driver during its initialization might try to fetch an object from
another driver but since the object is yet to be autostarted the fetch
fails. This has been observed in reality: qemu driver performs
qemuProcessReconnect() during qemu's stateInitialize phase which may
call virDomainDiskTranslateSourcePool() which connects to the storage
driver to look up the volume. But the storage driver did not autostart
its pools yet therefore volume lookup fails and the domain is killed.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
src/driver-state.h
src/libvirt.c

index 54ca17b26088e1bb2e51e8849269693c7c2b9f3a..a8595662afff9fa8c61b62ea37d7320d1e7203df 100644 (file)
@@ -30,9 +30,6 @@ typedef int
                          virStateInhibitCallback callback,
                          void *opaque);
 
-typedef void
-(*virDrvStateAutoStart)(void);
-
 typedef int
 (*virDrvStateCleanup)(void);
 
@@ -48,7 +45,6 @@ typedef virStateDriver *virStateDriverPtr;
 struct _virStateDriver {
     const char *name;
     virDrvStateInitialize stateInitialize;
-    virDrvStateAutoStart stateAutoStart;
     virDrvStateCleanup stateCleanup;
     virDrvStateReload stateReload;
     virDrvStateStop stateStop;
index 854d70a2bf312409952ff58bf578db6ca6d8ef7b..7e665b6cba745c6940baf75fd1596f33f1ea3674 100644 (file)
@@ -632,11 +632,7 @@ virRegisterStateDriver(virStateDriverPtr driver)
  * @callback: callback to invoke to inhibit shutdown of the daemon
  * @opaque: data to pass to @callback
  *
- * Initialize all virtualization drivers. Accomplished in two phases,
- * the first being state and structure initialization followed by any
- * auto start supported by the driver.  This is done to ensure dependencies
- * that some drivers may have on another driver having been initialized
- * will exist, such as the storage driver's need to use the secret driver.
+ * Initialize all virtualization drivers.
  *
  * Returns 0 if all succeed, -1 upon any failure.
  */
@@ -664,14 +660,6 @@ virStateInitialize(bool privileged,
             }
         }
     }
-
-    for (i = 0; i < virStateDriverTabCount; i++) {
-        if (virStateDriverTab[i]->stateAutoStart) {
-            VIR_DEBUG("Running global auto start for %s state driver",
-                      virStateDriverTab[i]->name);
-            virStateDriverTab[i]->stateAutoStart();
-        }
-    }
     return 0;
 }