[libvirt] [PATCHv2] storage: Fix logical pool fmt type

Erik Skultety eskultet at redhat.com
Thu Sep 25 14:26:18 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. Due to backward compatibility reasons
documentation now refers to pool format type 'unknown' instead of 'auto'.

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1123767
---
 docs/schemas/storagepool.rng | 2 +-
 docs/storage.html.in         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/schemas/storagepool.rng b/docs/schemas/storagepool.rng
index 2d165a3..7234ef3 100644
--- a/docs/schemas/storagepool.rng
+++ b/docs/schemas/storagepool.rng
@@ -465,7 +465,7 @@
       <element name='format'>
         <attribute name='type'>
           <choice>
-            <value>auto</value>
+            <value>unknown</value>
             <value>lvm2</value>
           </choice>
         </attribute>
diff --git a/docs/storage.html.in b/docs/storage.html.in
index 3d2ffca..49fd862 100644
--- a/docs/storage.html.in
+++ b/docs/storage.html.in
@@ -331,7 +331,7 @@
       The logical volume pool supports the following formats:
     </p>
     <ul>
-      <li><code>auto</code> - automatically determine format</li>
+      <li><code>unknown</code> - automatically determine format</li>
       <li>
         <code>lvm2</code>
       </li>
-- 
1.9.3




More information about the libvir-list mailing list