There isn't any way to dictate allocation when creating disk volumes, so
capacity is the only relevant value.
---
src/storage_backend_disk.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/storage_backend_disk.c b/src/storage_backend_disk.c
index e50825b..ae2acae 100644
--- a/src/storage_backend_disk.c
+++ b/src/storage_backend_disk.c
@@ -563,7 +563,7 @@ virStorageBackendDiskCreateVol(virConnectPtr conn,
if (virStorageBackendDiskPartBoundries(conn, pool, &startOffset,
&endOffset,
- vol->allocation) != 0) {
+ vol->capacity) != 0) {
return -1;
}
--
1.6.0.6