From: Roman Bogorodskiy Date: Sun, 21 Dec 2025 09:04:41 +0000 (+0100) Subject: bhyve: domain: require ISA controller on x86_64 only X-Git-Tag: v12.0.0-rc1~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3c8c7e8cc8e98c20f140f77dc1eb52ffedb402f;p=thirdparty%2Flibvirt.git bhyve: domain: require ISA controller on x86_64 only ISA controller is not used by the ARM guests. Signed-off-by: Roman Bogorodskiy Reviewed-by: Michal Privoznik --- diff --git a/src/bhyve/bhyve_domain.c b/src/bhyve/bhyve_domain.c index b9f9761b43..0c33a67ca6 100644 --- a/src/bhyve/bhyve_domain.c +++ b/src/bhyve/bhyve_domain.c @@ -62,6 +62,9 @@ virDomainXMLPrivateDataCallbacks virBhyveDriverPrivateDataCallbacks = { static bool bhyveDomainDefNeedsISAController(virDomainDef *def) { + if (!ARCH_IS_X86(def->os.arch)) + return false; + if (def->os.bootloader == NULL && def->os.loader) return true;