Displaying 1 result from an estimated 1 matches for "ce4ad99".
2013 Jun 13
0
[PATCH] Properly control platform device creation in upstream QEMU
...e QEMU command line (and
hence creates the device) only when xen_platform_pci is true.
Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
---
tools/libxl/libxl_dm.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
index ac1f90e..ce4ad99 100644
--- a/tools/libxl/libxl_dm.c
+++ b/tools/libxl/libxl_dm.c
@@ -383,6 +383,12 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc,
flexarray_append(dm_args, "-xen-attach");
}
+ if (b_info->type == LIBXL_DOMAIN_TYPE_HVM &&
+ libxl_de...