From: Paul Durrant Date: Tue, 24 Jan 2023 10:59:49 +0000 (+0000) Subject: xen: Permit --xen-domid argument when accel is KVM X-Git-Tag: v8.0.0-rc0~36^2^2~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7058fa02200e70bfecda10fd58c2555674d802ed;p=thirdparty%2Fqemu.git xen: Permit --xen-domid argument when accel is KVM Signed-off-by: Paul Durrant Signed-off-by: David Wooodhouse --- diff --git a/softmmu/vl.c b/softmmu/vl.c index cebe8d9452d..3340f63c376 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -3360,7 +3360,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); }