[libvirt] [PATCH 1/6] vz: remove check for auto file format for disks

Maxim Nestratov mnestratov at virtuozzo.com
Tue May 17 10:47:56 UTC 2016


From: Nikolay Shirokovskiy <nshirokovskiy at virtuozzo.com>

VIR_STORAGE_FILE_AUTO can not be set from xml description.
At the same time we don't set disks format to this value
as for example qemu does. Thus this we can never get this
value in format.

Signed-off-by: Nikolay Shirokovskiy <nshirokovskiy at virtuozzo.com>
---
 src/vz/vz_utils.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/vz/vz_utils.c b/src/vz/vz_utils.c
index ae99aa0..49997f0 100644
--- a/src/vz/vz_utils.c
+++ b/src/vz/vz_utils.c
@@ -414,8 +414,7 @@ vzCheckUnsupportedDisks(virDomainDefPtr def, vzCapabilitiesPtr vzCaps)
         } else {
             if (disk->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
                 supported = diskFormat == VIR_STORAGE_FILE_RAW ||
-                            diskFormat == VIR_STORAGE_FILE_NONE ||
-                            diskFormat == VIR_STORAGE_FILE_AUTO;
+                            diskFormat == VIR_STORAGE_FILE_NONE;
             }
         }
 
-- 
2.4.3




More information about the libvir-list mailing list