[libvirt] [PATCHv1 3/4] qemu: add -sandbox to command line if requested

Ján Tomko jtomko at redhat.com
Tue Sep 11 12:58:20 UTC 2012


---
 src/qemu/qemu_command.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
index a83d6de..210290e 100644
--- a/src/qemu/qemu_command.c
+++ b/src/qemu/qemu_command.c
@@ -6462,6 +6462,13 @@ qemuBuildCommandLine(virConnectPtr conn,
                                  ? qemucmd->env_value[i] : "");
     }
 
+    if (qemuCapsGet(qemuCaps, QEMU_CAPS_SANDBOX)) {
+        if (driver->sandbox == 0)
+            virCommandAddArgList(cmd, "-sandbox", "off", NULL);
+        else if (driver->sandbox > 0)
+            virCommandAddArgList(cmd, "-sandbox", "on", NULL);
+    }
+
     return cmd;
 
  no_memory:
-- 
1.7.8.6




More information about the libvir-list mailing list