mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
qemu: domain: Initialize proper element in qemuDomainPrepareStorageSourceBlockdev
We are preparing a certain disk source passed in as '@src' so the individual functions should use that rather than disk->src which corresponds to the top level element of the chain only. Without this change TLS and persistent reservations would not work for backing images of a chain when using -blockdev. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
b0ae508344
commit
58da6e3c26
@ -13462,10 +13462,10 @@ qemuDomainPrepareStorageSourceBlockdev(virDomainDiskDefPtr disk,
|
|||||||
src->nodeformat) < 0)
|
src->nodeformat) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (qemuDomainPrepareStorageSourcePR(disk->src, priv, src->nodestorage) < 0)
|
if (qemuDomainPrepareStorageSourcePR(src, priv, src->nodestorage) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (qemuDomainPrepareStorageSourceTLS(disk->src, cfg, src->nodestorage,
|
if (qemuDomainPrepareStorageSourceTLS(src, cfg, src->nodestorage,
|
||||||
priv->qemuCaps) < 0)
|
priv->qemuCaps) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user