mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
qemuBlockReopenAccess: prepare for removal of 'raw' format layer
Make the helper reopening a blockdev for access pick the correct layer to reopen based on what is currently in use. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
dee5b3fb8e
commit
9ec0e28e87
@ -3202,8 +3202,19 @@ qemuBlockReopenAccess(virDomainObj *vm,
|
||||
src->readonly = readonly;
|
||||
/* from now on all error paths must use 'goto cleanup' */
|
||||
|
||||
if (!(srcprops = qemuBlockStorageSourceGetFormatProps(src, src->backingStore)))
|
||||
return -1;
|
||||
/* based on which is the current 'effecitve' layer we must reopen the
|
||||
* appropriate blockdev */
|
||||
if (qemuBlockStorageSourceGetFormatNodename(src)) {
|
||||
if (!(srcprops = qemuBlockStorageSourceGetFormatProps(src, src->backingStore)))
|
||||
return -1;
|
||||
} else if (qemuBlockStorageSourceGetSliceNodename(src)) {
|
||||
if (!(srcprops = qemuBlockStorageSourceGetBlockdevStorageSliceProps(src, true)))
|
||||
return -1;
|
||||
} else {
|
||||
if (!(srcprops = qemuBlockStorageSourceGetBackendProps(src,
|
||||
QEMU_BLOCK_STORAGE_SOURCE_BACKEND_PROPS_EFFECTIVE_NODE)))
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (virJSONValueArrayAppend(reopenoptions, &srcprops) < 0)
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user