forked from pool/libvirt
add upstream fix for recent multipath target patch
OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=815
This commit is contained in:
parent
07ddfb63d6
commit
8a2de5e696
71
aeb909bf-qemu-multipath-fix.patch
Normal file
71
aeb909bf-qemu-multipath-fix.patch
Normal file
@ -0,0 +1,71 @@
|
||||
commit aeb909bf9b4c3fa48d017475545df94f7c5d3b3a
|
||||
Author: Michal Prívozník <mprivozn@redhat.com>
|
||||
Date: Thu Mar 19 12:51:55 2020 +0100
|
||||
|
||||
qemu: Don't crash when getting targets for a multipath
|
||||
|
||||
In one of my previous commits I've introduced code that creates
|
||||
all devices for given (possible) multipath target. But I've made
|
||||
a mistake there - the code accesses 'next->path' without checking
|
||||
if the disk source is local. Note that the 'next->path' is
|
||||
NULL/doesn't make sense for VIR_STORAGE_TYPE_NVME.
|
||||
|
||||
Fixes: a30078cb832646177defd256e77c632905f1e6d0
|
||||
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1814947
|
||||
|
||||
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
||||
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
|
||||
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
||||
|
||||
Index: libvirt-6.1.0/src/qemu/qemu_domain.c
|
||||
===================================================================
|
||||
--- libvirt-6.1.0.orig/src/qemu/qemu_domain.c
|
||||
+++ libvirt-6.1.0/src/qemu/qemu_domain.c
|
||||
@@ -15550,7 +15550,6 @@ qemuDomainNamespaceSetupDisk(virDomainOb
|
||||
bool hasNVMe = false;
|
||||
|
||||
for (next = src; virStorageSourceIsBacking(next); next = next->backingStore) {
|
||||
- VIR_AUTOSTRINGLIST targetPaths = NULL;
|
||||
g_autofree char *tmpPath = NULL;
|
||||
|
||||
if (next->type == VIR_STORAGE_TYPE_NVME) {
|
||||
@@ -15559,6 +15558,8 @@ qemuDomainNamespaceSetupDisk(virDomainOb
|
||||
if (!(tmpPath = virPCIDeviceAddressGetIOMMUGroupDev(&next->nvme->pciAddr)))
|
||||
return -1;
|
||||
} else {
|
||||
+ VIR_AUTOSTRINGLIST targetPaths = NULL;
|
||||
+
|
||||
if (virStorageSourceIsEmpty(next) ||
|
||||
!virStorageSourceIsLocalStorage(next)) {
|
||||
/* Not creating device. Just continue. */
|
||||
@@ -15566,20 +15567,20 @@ qemuDomainNamespaceSetupDisk(virDomainOb
|
||||
}
|
||||
|
||||
tmpPath = g_strdup(next->path);
|
||||
- }
|
||||
|
||||
- if (virStringListAdd(&paths, tmpPath) < 0)
|
||||
- return -1;
|
||||
+ if (virDevMapperGetTargets(next->path, &targetPaths) < 0 &&
|
||||
+ errno != ENOSYS && errno != EBADF) {
|
||||
+ virReportSystemError(errno,
|
||||
+ _("Unable to get devmapper targets for %s"),
|
||||
+ next->path);
|
||||
+ return -1;
|
||||
+ }
|
||||
|
||||
- if (virDevMapperGetTargets(next->path, &targetPaths) < 0 &&
|
||||
- errno != ENOSYS && errno != EBADF) {
|
||||
- virReportSystemError(errno,
|
||||
- _("Unable to get devmapper targets for %s"),
|
||||
- next->path);
|
||||
- return -1;
|
||||
+ if (virStringListMerge(&paths, &targetPaths) < 0)
|
||||
+ return -1;
|
||||
}
|
||||
|
||||
- if (virStringListMerge(&paths, &targetPaths) < 0)
|
||||
+ if (virStringListAdd(&paths, tmpPath) < 0)
|
||||
return -1;
|
||||
}
|
||||
|
@ -2,7 +2,8 @@
|
||||
Tue Mar 17 19:50:01 UTC 2020 - James Fehlig <jfehlig@suse.com>
|
||||
|
||||
- qemu: Create multipath targets for PRs
|
||||
a30078cb-qemu-create-mp-target.patch
|
||||
a30078cb-qemu-create-mp-target.patch,
|
||||
aeb909bf-qemu-multipath-fix.patch
|
||||
bsc#1161883
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
@ -339,6 +339,7 @@ Source99: baselibs.conf
|
||||
Source100: %{name}-rpmlintrc
|
||||
# Upstream patches
|
||||
Patch0: a30078cb-qemu-create-mp-target.patch
|
||||
Patch1: aeb909bf-qemu-multipath-fix.patch
|
||||
# Patches pending upstream review
|
||||
Patch100: libxl-dom-reset.patch
|
||||
Patch101: network-don-t-use-dhcp-authoritative-on-static-netwo.patch
|
||||
@ -873,6 +874,7 @@ libvirt plugin for NSS for translating domain names into IP addresses.
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch100 -p1
|
||||
%patch101 -p1
|
||||
%patch150 -p1
|
||||
|
Loading…
Reference in New Issue
Block a user