mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
qemuBlockStorageSourceGetFormatRawProps: format 'offset' and 'size' for slice
If we have a 'format' type slice for a raw driver we can directly format the values. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
6efa046165
commit
c481881283
@ -1194,16 +1194,21 @@ qemuBlockStorageSourceGetFormatRawProps(virStorageSourcePtr src,
|
|||||||
secretalias = srcPriv->encinfo->s.aes.alias;
|
secretalias = srcPriv->encinfo->s.aes.alias;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* currently unhandled properties for the 'raw' driver:
|
|
||||||
* 'offset'
|
|
||||||
* 'size'
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (virJSONValueObjectAdd(props,
|
if (virJSONValueObjectAdd(props,
|
||||||
"s:driver", driver,
|
"s:driver", driver,
|
||||||
"S:key-secret", secretalias, NULL) < 0)
|
"S:key-secret", secretalias, NULL) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
/* Currently only storage slices are supported. We'll have to calculate
|
||||||
|
* the union of the slices here if we don't want to be adding needless
|
||||||
|
* 'raw' nodes. */
|
||||||
|
if (src->sliceStorage &&
|
||||||
|
virJSONValueObjectAdd(props,
|
||||||
|
"U:offset", src->sliceStorage->offset,
|
||||||
|
"U:size", src->sliceStorage->size,
|
||||||
|
NULL) < 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user