From: Paul Durrant Date: Tue, 24 Jan 2023 10:59:49 +0000 (+0000) Subject: Permit --xen-domid argument when accel is KVM X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a33016ba2cfbca1a062b4761fdb746a51ae8df4f;p=people%2Fpauldu%2Fqemu.git Permit --xen-domid argument when accel is KVM Signed-off-by: Paul Durrant --- diff --git a/softmmu/vl.c b/softmmu/vl.c index 9177d95d4e..25d7ee9098 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -3362,7 +3362,7 @@ void qemu_init(int argc, char **argv) has_defaults = 0; break; case QEMU_OPTION_xen_domid: - if (!(accel_find("xen"))) { + if (!(accel_find("xen")) && !(accel_find("kvm"))) { error_report("Option not supported for this target"); exit(1); }