forked from rpms/libvirt
45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
From eb6fef622ded5762649db2d766c1eb3d876859c9 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <eb6fef622ded5762649db2d766c1eb3d876859c9@dist-git>
|
|
From: Erik Skultety <eskultet@redhat.com>
|
|
Date: Mon, 15 Jul 2019 08:52:07 +0200
|
|
Subject: [PATCH] docs: schemas: Decouple the virtio options from each other
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Currently, all of the VirtioOptions are under a single <optional>
|
|
element, however, neither our parser/formatter or QEMU driver requires
|
|
the presence of all the options if only a single one from the set has
|
|
been specified, so fix it and silence the schema validator.
|
|
|
|
Signed-off-by: Erik Skultety <eskultet@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
(cherry picked from commit 87b4e1cd7e7ec23dc69c8082948cd3bb49e18ff3)
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1729675
|
|
|
|
Signed-off-by: Erik Skultety <eskultet@redhat.com>
|
|
Message-Id: <9d20b6d62248ef82a42128c461ef8c94cbc64e09.1563173480.git.eskultet@redhat.com>
|
|
Reviewed-by: Andrea Bolognani <abologna@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
---
|
|
docs/schemas/domaincommon.rng | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/docs/schemas/domaincommon.rng b/docs/schemas/domaincommon.rng
|
|
index 2b6d4dced6..7d37caa246 100644
|
|
--- a/docs/schemas/domaincommon.rng
|
|
+++ b/docs/schemas/domaincommon.rng
|
|
@@ -5417,6 +5417,8 @@
|
|
<attribute name="iommu">
|
|
<ref name="virOnOff"/>
|
|
</attribute>
|
|
+ </optional>
|
|
+ <optional>
|
|
<attribute name="ats">
|
|
<ref name="virOnOff"/>
|
|
</attribute>
|
|
--
|
|
2.22.0
|
|
|