If we have a 'format' type slice for a raw driver we can directly format
the values.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
src/qemu/qemu_block.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/src/qemu/qemu_block.c b/src/qemu/qemu_block.c
index 63116ef5f2..5fac8c17b4 100644
--- a/src/qemu/qemu_block.c
+++ b/src/qemu/qemu_block.c
@@ -1187,16 +1187,18 @@ qemuBlockStorageSourceGetFormatRawProps(virStorageSourcePtr src,
secretalias = srcPriv->encinfo->s.aes.alias;
}
- /* currently unhandled properties for the 'raw' driver:
- * 'offset'
- * 'size'
- */
-
if (virJSONValueObjectAdd(props,
"s:driver", driver,
"S:key-secret", secretalias, NULL) < 0)
return -1;
+ if (src->sliceFormat &&
+ virJSONValueObjectAdd(props,
+ "p:offset", src->sliceFormat->offset,
+ "p:size", src->sliceFormat->size,
+ NULL) < 0)
+ return -1;
+
return 0;
}
--
2.24.1