Merge "aarch64/arm64 libvirt VMs should default to SCSI controller"

This commit is contained in:
Zuul 2022-06-27 03:14:37 +00:00 committed by Gerrit Code Review
commit d293ae4359
1 changed files with 3 additions and 1 deletions

View File

@ -913,11 +913,13 @@ class LibvirtDriver(AbstractSystemsDriver):
if os_element is not None:
type_element = os_element.find('type')
if type_element is not None:
arch = type_element.attrib.get('arch')
machine = type_element.attrib.get('machine')
if machine and 'q35' in machine:
# No IDE support for newer q35 machine types
return 'sata'
if arch and 'aarch64' in arch:
return 'scsi'
return 'ide'
def _add_boot_image(self, domain, domain_tree, device,