[libvirt PATCH v4 1/5] schema: Make element "topology" in host CPU definition optional

Tim Wiederhake twiederh at redhat.com
Wed Oct 7 08:54:54 UTC 2020


This element is not always present, see e.g.
x86_64-cpuid-Xeon-X5460-host.xml, x86_64-cpuid-Pentium-P6100-host.xml,
or x86_64-cpuid-EPYC-7601-32-Core-ibpb-host.xml.

Signed-off-by: Tim Wiederhake <twiederh at redhat.com>
---
 docs/schemas/cputypes.rng | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/docs/schemas/cputypes.rng b/docs/schemas/cputypes.rng
index 88f6904343..aea6ff0267 100644
--- a/docs/schemas/cputypes.rng
+++ b/docs/schemas/cputypes.rng
@@ -336,17 +336,19 @@
             </attribute>
           </element>
         </optional>
-        <element name="topology">
-          <attribute name="sockets">
-            <ref name="positiveInteger"/>
-          </attribute>
-          <attribute name="cores">
-            <ref name="positiveInteger"/>
-          </attribute>
-          <attribute name="threads">
-            <ref name="positiveInteger"/>
-          </attribute>
-        </element>
+        <optional>
+          <element name="topology">
+            <attribute name="sockets">
+              <ref name="positiveInteger"/>
+            </attribute>
+            <attribute name="cores">
+              <ref name="positiveInteger"/>
+            </attribute>
+            <attribute name="threads">
+              <ref name="positiveInteger"/>
+            </attribute>
+          </element>
+        </optional>
         <zeroOrMore>
           <element name="feature">
             <attribute name="name">
-- 
2.26.2




More information about the libvir-list mailing list