int idx;
virDomainDiskDefPtr disk = NULL;
virStorageSourcePtr topSource;
+ virStorageSourcePtr baseSource;
const char *top_parent = NULL;
- const char *base_canon = NULL;
bool clean_access = false;
virCheckFlags(VIR_DOMAIN_BLOCK_COMMIT_SHALLOW, -1);
}
if (!base && (flags & VIR_DOMAIN_BLOCK_COMMIT_SHALLOW))
- base_canon = topSource->backingStore->path;
- else if (!(base_canon = virStorageFileChainLookup(topSource,
- base, NULL, NULL)))
+ baseSource = topSource->backingStore;
+ else if (!(virStorageFileChainLookup(topSource, base, &baseSource, NULL)))
goto endjob;
- /* Note that this code exploits the fact that
- * virStorageFileChainLookup guarantees a simple pointer
- * comparison will work, rather than needing full-blown STREQ. */
if ((flags & VIR_DOMAIN_BLOCK_COMMIT_SHALLOW) &&
- base_canon != topSource->backingStore->path) {
+ baseSource != topSource->backingStore) {
virReportError(VIR_ERR_INVALID_ARG,
_("base '%s' is not immediately below '%s' in chain "
"for '%s'"),
* operation succeeds, but doing that requires tracking the
* operation in XML across libvirtd restarts. */
clean_access = true;
- if (qemuDomainPrepareDiskChainElement(driver, vm, disk, base_canon,
+ if (qemuDomainPrepareDiskChainElement(driver, vm, disk, baseSource->path,
VIR_DISK_CHAIN_READ_WRITE) < 0 ||
(top_parent && top_parent != disk->src.path &&
qemuDomainPrepareDiskChainElement(driver, vm, disk,
qemuDomainObjEnterMonitor(driver, vm);
ret = qemuMonitorBlockCommit(priv->mon, device,
top ? top : topSource->path,
- base ? base : base_canon, bandwidth);
+ base ? base : baseSource->path, bandwidth);
qemuDomainObjExitMonitor(driver, vm);
endjob:
if (ret < 0 && clean_access) {
/* Revert access to read-only, if possible. */
- qemuDomainPrepareDiskChainElement(driver, vm, disk, base_canon,
+ qemuDomainPrepareDiskChainElement(driver, vm, disk, baseSource->path,
VIR_DISK_CHAIN_READ_ONLY);
if (top_parent && top_parent != disk->src.path)
qemuDomainPrepareDiskChainElement(driver, vm, disk,