[PATCH] bhyve: add 'root' parameter to driver initializer

Daniel P. Berrangé berrange at redhat.com
Mon Jan 27 13:45:51 UTC 2020


Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>
---

Pushed as a FreeBSD build fix

 src/bhyve/bhyve_driver.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/bhyve/bhyve_driver.c b/src/bhyve/bhyve_driver.c
index 5b8fba7467..713301399e 100644
--- a/src/bhyve/bhyve_driver.c
+++ b/src/bhyve/bhyve_driver.c
@@ -1175,11 +1175,18 @@ bhyveStateCleanup(void)
 
 static int
 bhyveStateInitialize(bool privileged,
+                     const char *root,
                      virStateInhibitCallback callback G_GNUC_UNUSED,
                      void *opaque G_GNUC_UNUSED)
 {
     bool autostart = true;
 
+    if (root != NULL) {
+        virReportError(VIR_ERR_INVALID_ARG, "%s",
+                       _("Driver does not support embedded mode"));
+        return -1;
+    }
+
     if (!privileged) {
         VIR_INFO("Not running privileged, disabling driver");
         return VIR_DRV_STATE_INIT_SKIPPED;
-- 
2.24.1




More information about the libvir-list mailing list