From: Peter Krempa Date: Tue, 26 Nov 2024 08:35:47 +0000 (+0100) Subject: qemuDomainVirStorageSourceFindByNodeName: Match also '' sources X-Git-Tag: v10.10.0-rc2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=515ed143ecfea0b903572289c9bd520ab2861889;p=thirdparty%2Flibvirt.git qemuDomainVirStorageSourceFindByNodeName: Match also '' sources As the source for the data file is a completely separate virStorageSource including it's own index we need to match it explicitly, so that code such as storage threshold events work properly and separately for the data file. Signed-off-by: Peter Krempa Reviewed-by: Jiri Denemark --- diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c index 150f0736f3..4499fed6bc 100644 --- a/src/qemu/qemu_domain.c +++ b/src/qemu/qemu_domain.c @@ -2921,6 +2921,10 @@ qemuDomainVirStorageSourceFindByNodeName(virStorageSource *top, for (tmp = top; virStorageSourceIsBacking(tmp); tmp = tmp->backingStore) { if (qemuDomainVirStorageSourceMatchNodename(tmp, nodeName)) return tmp; + + if (tmp->dataFileStore && + qemuDomainVirStorageSourceMatchNodename(tmp->dataFileStore, nodeName)) + return tmp->dataFileStore; } return NULL;