From 59e7b2008f7e7ec4f7c1b4631240b49018255349 Mon Sep 17 00:00:00 2001 From: Jiabo Feng Date: Tue, 19 Dec 2023 09:52:35 +0800 Subject: [PATCH] supporting generic vdpa device migrate - vdpa: support vdpa device migrate - vdpa: support vdpa device hot plug/unplug - vdpa: Introduce the new device type vdpa to hostdev - node_device: fix leak of DIR* - Include vdpa devices in node device list Signed-off-by: Jiabo Feng --- libvirt.spec | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/libvirt.spec b/libvirt.spec index a8c6c99..b02bbeb 100644 --- a/libvirt.spec +++ b/libvirt.spec @@ -101,7 +101,7 @@ Summary: Library providing a simple virtualization API Name: libvirt Version: 6.2.0 -Release: 61 +Release: 62 License: LGPLv2+ URL: https://libvirt.org/ @@ -501,6 +501,11 @@ Patch0388: qemu_migration_cookie-Rename-ret-in-qemuDomainExtrac.patch Patch0389: tests-upstream-Fixing-compiler-warning-in-cputest.patch Patch0390: qemu-Return-perf-status-that-affect-next-boot-for-sh.patch Patch0391: lxc-fix-lxcContainerMountAllFS-DEREF_BEFORE_CHECK.patch +Patch0392: Include-vdpa-devices-in-node-device-list.patch +Patch0393: node_device-fix-leak-of-DIR.patch +Patch0394: vdpa-Introduce-the-new-device-type-vdpa-to-hostdev.patch +Patch0395: vdpa-support-vdpa-device-hot-plug-unplug.patch +Patch0396: vdpa-support-vdpa-device-migrate.patch Requires: libvirt-daemon = %{version}-%{release} Requires: libvirt-daemon-config-network = %{version}-%{release} @@ -2237,6 +2242,13 @@ exit 0 %changelog +* Tue Dec 19 2023 Jiabo Feng - 6.2.0-62 +- vdpa: support vdpa device migrate +- vdpa: support vdpa device hot plug/unplug +- vdpa: Introduce the new device type vdpa to hostdev +- node_device: fix leak of DIR* +- Include vdpa devices in node device list + * Wed Nov 29 2023 Jiabo Feng - 6.2.0-61 - lxc: fix lxcContainerMountAllFS() DEREF_BEFORE_CHECK - qemu: Return perf status that affect next boot for shutoff domains While we set up perf events for a shutoff domain and check the settings, All of perf events are reported as 'disabled', unless we add --config, This is redundant for a shutoff domain. -- Gitee