From c13a8080ea7c3147801f066c533d095e0f8224ba Mon Sep 17 00:00:00 2001 From: Kashyap Chamarthy Date: Fri, 23 Jun 2023 15:14:40 +0200 Subject: [PATCH] Pick next min libvirt / QEMU versions for "C" (2024) release For the "C" release (2024), the NEXT_MIN_{LIBVIRT,QEMU} to be the following: NEXT_MIN_LIBVIRT_VERSION = (8, 0, 0) NEXT_MIN_QEMU_VERSION = (6, 2, 0) The above NEXT_MIN version is picked based on Ubuntu "Jammy" (22.04). It is the lowest common denominotor among Debian 11 ("Bullseye"), Ubuntu 22.04 ("Jammy"), and CentOS 9 Stream. - Ubuntu 22.04 (Jammy): - libvirt-daemon: 8.0.0-1ubuntu7.5 - qemu-system-x86: 6.2+dfsg-2ubuntu6.11 - Debian 11 (Bullseye): - libvirt: 7.0.0-3+deb11u2 - qemu: 5.2+dfsg-11+deb11u2 - CentOS Stream 9: - libvirt-daemon-kvm-9.3.0-2.el9.x86_64.rpm - qemu-kvm-8.0.0-4.el9.x86_64.rpm Change-Id: I1b6fcffbfaf940d094957e95fee0f4b624dd0832 Signed-off-by: Kashyap Chamarthy --- nova/virt/libvirt/driver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/virt/libvirt/driver.py b/nova/virt/libvirt/driver.py index fe4896029650..50e07657e768 100644 --- a/nova/virt/libvirt/driver.py +++ b/nova/virt/libvirt/driver.py @@ -218,8 +218,8 @@ patch_tpool_proxy() # DO NOT FORGET to update this document when touching any versions below! MIN_LIBVIRT_VERSION = (6, 0, 0) MIN_QEMU_VERSION = (4, 2, 0) -NEXT_MIN_LIBVIRT_VERSION = (7, 0, 0) -NEXT_MIN_QEMU_VERSION = (5, 2, 0) +NEXT_MIN_LIBVIRT_VERSION = (8, 0, 0) +NEXT_MIN_QEMU_VERSION = (6, 2, 0) # vIOMMU driver attribute aw_bits minimal support version. MIN_LIBVIRT_VIOMMU_AW_BITS = (6, 5, 0)