- tools: virsh: fix crash on error (RHEL-234911) - conf: Include check for pci_bus in virDomainIOMMUDefEquals() (RHEL-138901) - qemu: introduce QEMU_CAPS_DEVICE_ARM_SMMUV3 (RHEL-138901) - qemu: introduce QEMU_CAPS_ARM_SMMUV3_SMMU_PER_BUS (RHEL-138901) - qemu: introduce QEMU_CAPS_ARM_SMMUV3_ACCEL (RHEL-138901) - qemu: Add support for HW-accelerated nested SMMUv3 (RHEL-138901) - tests: qemuxmlconfdata: provide HW-accel smmuv3 sample XML and CLI args (RHEL-138901) - conf: schemas: Allow '.' in schema for CPU flag name (RHEL-222549) - tests: capabilityschemadata: Add a real test example (RHEL-222549) - util: virFileChownFiles: do not follow symlinks (CVE-2026-63622) Resolves: RHEL-138901, RHEL-222549, RHEL-234911, RHEL-235931
39 lines
1.3 KiB
Diff
39 lines
1.3 KiB
Diff
From 9cf23fdd0cf7d5b39a1f51cfc61826b4da431db2 Mon Sep 17 00:00:00 2001
|
|
Message-ID: <9cf23fdd0cf7d5b39a1f51cfc61826b4da431db2.1786713644.git.jdenemar@redhat.com>
|
|
From: Peter Krempa <pkrempa@redhat.com>
|
|
Date: Mon, 3 Aug 2026 14:53:25 +0200
|
|
Subject: [PATCH] conf: schemas: Allow '.' in schema for CPU flag name
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Allow '.' so that CPU features such as:
|
|
|
|
<feature name='sse4.1'/>
|
|
|
|
pass schema validation.
|
|
|
|
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
|
|
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
(cherry picked from commit 5225c1cb688170bb2748f2f23455da4a7cb8a1bf)
|
|
https://redhat.atlassian.net/browse/RHEL-222549
|
|
---
|
|
src/conf/schemas/cputypes.rng | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/conf/schemas/cputypes.rng b/src/conf/schemas/cputypes.rng
|
|
index 8edf1d14e3..eef3807f1a 100644
|
|
--- a/src/conf/schemas/cputypes.rng
|
|
+++ b/src/conf/schemas/cputypes.rng
|
|
@@ -406,7 +406,7 @@
|
|
<element name="feature">
|
|
<attribute name="name">
|
|
<data type="string">
|
|
- <param name="pattern">[a-zA-Z0-9\-_]+</param>
|
|
+ <param name="pattern">[a-zA-Z0-9\-_.]+</param>
|
|
</data>
|
|
</attribute>
|
|
<empty/>
|
|
--
|
|
2.55.0
|