[libvirt] [PATCH 4/4] storage: disk: Use capacity, not allocation, when creating volume.

Cole Robinson crobinso at redhat.com
Fri Jul 10 19:32:23 UTC 2009


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




More information about the libvir-list mailing list