[libvirt] [PATCH 2/2] storage: Allow probe of volume capacity for BLOCK type

John Ferlan jferlan at redhat.com
Tue Dec 6 23:43:39 UTC 2016


If the voldef type is VIR_STORAGE_VOL_BLOCK, then as long as the
format is known, let's allow the probe to happen - gets a truer value
and the same probe/update would be allowed for the same volume defined
in a domain.

Signed-off-by: John Ferlan <jferlan at redhat.com>
---
 src/storage/storage_backend.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/storage/storage_backend.c b/src/storage/storage_backend.c
index cadc29a..0791442 100644
--- a/src/storage/storage_backend.c
+++ b/src/storage/storage_backend.c
@@ -1897,7 +1897,7 @@ virStorageBackendUpdateVolTargetInfo(virStorageVolType voltype,
     if ((ret = virStorageBackendUpdateVolTargetInfoFD(target, fd, &sb)) < 0)
         goto cleanup;
 
-    if (voltype == VIR_STORAGE_VOL_FILE &&
+    if ((voltype == VIR_STORAGE_VOL_FILE || voltype == VIR_STORAGE_VOL_BLOCK) &&
         target->format != VIR_STORAGE_FILE_NONE) {
         if (S_ISDIR(sb.st_mode)) {
             if (virStorageBackendIsPloopDir(target->path)) {
-- 
2.7.4




More information about the libvir-list mailing list