!85 bugfix:virDevMapperGetTargets: Don't ingore EBADF

From: @imxcc
Reviewed-by: @kevinzhu1
Signed-off-by: @kevinzhu1
This commit is contained in:
openeuler-ci-bot 2021-09-14 14:51:27 +00:00 committed by Gitee
commit 8ab4fe5eaf
4 changed files with 63 additions and 3 deletions

View File

@ -105,7 +105,7 @@
Summary: Library providing a simple virtualization API Summary: Library providing a simple virtualization API
Name: libvirt Name: libvirt
Version: 6.2.0 Version: 6.2.0
Release: 22 Release: 24
License: LGPLv2+ License: LGPLv2+
URL: https://libvirt.org/ URL: https://libvirt.org/
@ -184,8 +184,9 @@ Patch0067: tests-fix-stat-mocking-with-Fedora-rawhide.patch
Patch0068: cpu_map-Add-Cooperlake-x86-CPU-model.patch Patch0068: cpu_map-Add-Cooperlake-x86-CPU-model.patch
Patch0069: cpu_map-Add-pschange-mc-no-bit-in-IA32_ARCH_CAPABILI.patch Patch0069: cpu_map-Add-pschange-mc-no-bit-in-IA32_ARCH_CAPABILI.patch
Patch0070: cpu_map-Distribute-x86_Cooperlake.xml.patch Patch0070: cpu_map-Distribute-x86_Cooperlake.xml.patch
Patch0071: 0001-Don-t-cache-device-mapper-major.patch Patch0071: Don-t-cache-device-mapper-major.patch
Patch0072: 0001-Handle-kernel-without-device-mapper-support.patch Patch0072: Handle-kernel-without-device-mapper-support.patch
Patch0073: virDevMapperGetTargets-Don-t-ignore-EBADF.patch
Requires: libvirt-daemon = %{version}-%{release} Requires: libvirt-daemon = %{version}-%{release}
Requires: libvirt-daemon-config-network = %{version}-%{release} Requires: libvirt-daemon-config-network = %{version}-%{release}
@ -1919,6 +1920,12 @@ exit 0
%changelog %changelog
* Tue Sep 14 2021 imxcc <xingchaochao@huawei.com> - 6.2.0-24
- virDevMapperGetTargets: Don't ignore EBADF
* Tue Sep 14 2021 imxcc <xingchaochao@huawei.com> - 6.2.0-23
- Modify some different patch files
* Thu Sep 2 2021 heyitao <heyitao@uniontech.com> - 6.2.0-22 * Thu Sep 2 2021 heyitao <heyitao@uniontech.com> - 6.2.0-22
- Don't cache device-mapper major - Don't cache device-mapper major
- Handle kernel without device-mapper support - Handle kernel without device-mapper support

View File

@ -0,0 +1,53 @@
From e450ebb4c6eab1b7376a5ba873d10936ad563b75 Mon Sep 17 00:00:00 2001
From: Michal Privoznik <mprivozn@redhat.com>
Date: Thu, 23 Jul 2020 17:08:46 +0200
Subject: [PATCH] virDevMapperGetTargets: Don't ignore EBADF
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
---
src/qemu/qemu_cgroup.c | 2 +-
src/qemu/qemu_domain.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/qemu/qemu_cgroup.c b/src/qemu/qemu_cgroup.c
index 914bf640ca..e88da02341 100644
--- a/src/qemu/qemu_cgroup.c
+++ b/src/qemu/qemu_cgroup.c
@@ -87,7 +87,7 @@ qemuSetupImagePathCgroup(virDomainObjPtr vm,
}
if (virDevMapperGetTargets(path, &targetPaths) < 0 &&
- errno != ENOSYS && errno != EBADF) {
+ errno != ENOSYS) {
virReportSystemError(errno,
_("Unable to get devmapper targets for %s"),
path);
diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
index 5b22eb2eaa..2058290870 100644
--- a/src/qemu/qemu_domain.c
+++ b/src/qemu/qemu_domain.c
@@ -10264,7 +10264,7 @@ qemuDomainSetupDisk(virQEMUDriverConfigPtr cfg G_GNUC_UNUSED,
return -1;
if (virDevMapperGetTargets(next->path, &targetPaths) < 0 &&
- errno != ENOSYS && errno != EBADF) {
+ errno != ENOSYS) {
virReportSystemError(errno,
_("Unable to get devmapper targets for %s"),
next->path);
@@ -11328,7 +11328,7 @@ qemuDomainNamespaceSetupDisk(virDomainObjPtr vm,
tmpPath = g_strdup(next->path);
if (virDevMapperGetTargets(next->path, &targetPaths) < 0 &&
- errno != ENOSYS && errno != EBADF) {
+ errno != ENOSYS) {
virReportSystemError(errno,
_("Unable to get devmapper targets for %s"),
next->path);
--
2.27.0