[libvirt] [PATCH] storage: Fix logical pool fmt type unknown->auto

Erik Skultety eskultet at redhat.com
Thu Sep 25 12:13:49 UTC 2014


According to our documentation logical pool supports formats 'auto' and
'lvm2'. However, in storage_conf.c we prevously defined storage pool
formats: unknown, lvm2. Format 'auto' does make more sense than
format 'unknown', so we should probably stay consistent with the
documentation

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1123767
---
 src/conf/storage_conf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/conf/storage_conf.c b/src/conf/storage_conf.c
index 36696a4..75004fe 100644
--- a/src/conf/storage_conf.c
+++ b/src/conf/storage_conf.c
@@ -81,7 +81,7 @@ VIR_ENUM_IMPL(virStoragePoolFormatDisk,
 
 VIR_ENUM_IMPL(virStoragePoolFormatLogical,
               VIR_STORAGE_POOL_LOGICAL_LAST,
-              "unknown", "lvm2")
+              "auto", "lvm2")
 
 
 VIR_ENUM_IMPL(virStorageVolFormatDisk,
-- 
1.9.3




More information about the libvir-list mailing list