|
|
982648 |
From d86f12106d012206eebeef6a9713da3a53a00eec Mon Sep 17 00:00:00 2001
|
|
|
982648 |
Message-Id: <d86f12106d012206eebeef6a9713da3a53a00eec@dist-git>
|
|
|
982648 |
From: Erik Skultety <eskultet@redhat.com>
|
|
|
982648 |
Date: Thu, 19 Jul 2018 15:03:59 +0200
|
|
|
982648 |
Subject: [PATCH] qemu: caps: Add vfio-pci.display capability
|
|
|
982648 |
MIME-Version: 1.0
|
|
|
982648 |
Content-Type: text/plain; charset=UTF-8
|
|
|
982648 |
Content-Transfer-Encoding: 8bit
|
|
|
982648 |
|
|
|
982648 |
QEMU 2.12 introduced a new vfio-pci device option 'display=on/off/auto'.
|
|
|
982648 |
This patch introduces the necessary capability.
|
|
|
982648 |
|
|
|
982648 |
Signed-off-by: Erik Skultety <eskultet@redhat.com>
|
|
|
982648 |
Reviewed-by: John Ferlan <jferlan@redhat.com>
|
|
|
982648 |
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
|
982648 |
(cherry picked from commit 11c7bdac6dbe8659c2f8bf7a35b97288b0acb207)
|
|
|
982648 |
|
|
|
982648 |
https://bugzilla.redhat.com/show_bug.cgi?id=1475770
|
|
|
982648 |
Signed-off-by: Erik Skultety <eskultet@redhat.com>
|
|
|
982648 |
Reviewed-by: Ján Tomko <jtomko@redhat.com>
|
|
|
982648 |
---
|
|
|
982648 |
src/qemu/qemu_capabilities.c | 4 ++++
|
|
|
982648 |
src/qemu/qemu_capabilities.h | 3 +++
|
|
|
982648 |
tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml | 1 +
|
|
|
982648 |
tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml | 1 +
|
|
|
982648 |
tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml | 1 +
|
|
|
982648 |
tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml | 1 +
|
|
|
982648 |
tests/qemucapabilitiesdata/caps_3.0.0.ppc64.xml | 1 +
|
|
|
982648 |
tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml | 1 +
|
|
|
982648 |
8 files changed, 13 insertions(+)
|
|
|
982648 |
|
|
|
982648 |
diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c
|
|
|
982648 |
index 05be8f1416..d1e4fafe7d 100644
|
|
|
982648 |
--- a/src/qemu/qemu_capabilities.c
|
|
|
982648 |
+++ b/src/qemu/qemu_capabilities.c
|
|
|
982648 |
@@ -504,6 +504,9 @@ VIR_ENUM_IMPL(virQEMUCaps, QEMU_CAPS_LAST,
|
|
|
982648 |
"machine.pseries.cap-htm",
|
|
|
982648 |
"usb-storage.werror",
|
|
|
982648 |
"egl-headless",
|
|
|
982648 |
+
|
|
|
982648 |
+ /* 315 */
|
|
|
982648 |
+ "vfio-pci.display",
|
|
|
982648 |
);
|
|
|
982648 |
|
|
|
982648 |
|
|
|
982648 |
@@ -1198,6 +1201,7 @@ static struct virQEMUCapsStringFlags virQEMUCapsDevicePropsPCIAssign[] = {
|
|
|
982648 |
|
|
|
982648 |
static struct virQEMUCapsStringFlags virQEMUCapsDevicePropsVfioPCI[] = {
|
|
|
982648 |
{ "bootindex", QEMU_CAPS_VFIO_PCI_BOOTINDEX },
|
|
|
982648 |
+ { "display", QEMU_CAPS_VFIO_PCI_DISPLAY },
|
|
|
982648 |
};
|
|
|
982648 |
|
|
|
982648 |
static struct virQEMUCapsStringFlags virQEMUCapsDevicePropsSCSIDisk[] = {
|
|
|
982648 |
diff --git a/src/qemu/qemu_capabilities.h b/src/qemu/qemu_capabilities.h
|
|
|
982648 |
index 55221e7e57..9e8ad5f5c3 100644
|
|
|
982648 |
--- a/src/qemu/qemu_capabilities.h
|
|
|
982648 |
+++ b/src/qemu/qemu_capabilities.h
|
|
|
982648 |
@@ -489,6 +489,9 @@ typedef enum { /* virQEMUCapsFlags grouping marker for syntax-check */
|
|
|
982648 |
QEMU_CAPS_USB_STORAGE_WERROR, /* -device usb-storage,werror=..,rerror=.. */
|
|
|
982648 |
QEMU_CAPS_EGL_HEADLESS, /* -display egl-headless */
|
|
|
982648 |
|
|
|
982648 |
+ /* 315 */
|
|
|
982648 |
+ QEMU_CAPS_VFIO_PCI_DISPLAY, /* -device vfio-pci.display */
|
|
|
982648 |
+
|
|
|
982648 |
QEMU_CAPS_LAST /* this must always be the last item */
|
|
|
982648 |
} virQEMUCapsFlags;
|
|
|
982648 |
|
|
|
982648 |
diff --git a/tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml b/tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml
|
|
|
982648 |
index 80e7afec04..0cc6327573 100644
|
|
|
982648 |
--- a/tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml
|
|
|
982648 |
+++ b/tests/qemucapabilitiesdata/caps_2.12.0.aarch64.xml
|
|
|
982648 |
@@ -170,6 +170,7 @@
|
|
|
982648 |
<flag name='chardev-fd-pass'/>
|
|
|
982648 |
<flag name='tpm-emulator'/>
|
|
|
982648 |
<flag name='egl-headless'/>
|
|
|
982648 |
+ <flag name='vfio-pci.display'/>
|
|
|
982648 |
<version>2011090</version>
|
|
|
982648 |
<kvmVersion>0</kvmVersion>
|
|
|
982648 |
<microcodeVersion>347550</microcodeVersion>
|
|
|
982648 |
diff --git a/tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml b/tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml
|
|
|
982648 |
index c4b09c0003..a88da6193e 100644
|
|
|
982648 |
--- a/tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml
|
|
|
982648 |
+++ b/tests/qemucapabilitiesdata/caps_2.12.0.ppc64.xml
|
|
|
982648 |
@@ -168,6 +168,7 @@
|
|
|
982648 |
<flag name='tpm-emulator'/>
|
|
|
982648 |
<flag name='machine.pseries.cap-htm'/>
|
|
|
982648 |
<flag name='egl-headless'/>
|
|
|
982648 |
+ <flag name='vfio-pci.display'/>
|
|
|
982648 |
<version>2011090</version>
|
|
|
982648 |
<kvmVersion>0</kvmVersion>
|
|
|
982648 |
<microcodeVersion>428334</microcodeVersion>
|
|
|
982648 |
diff --git a/tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml b/tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml
|
|
|
982648 |
index 1ff2fe45e1..7121da27a0 100644
|
|
|
982648 |
--- a/tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml
|
|
|
982648 |
+++ b/tests/qemucapabilitiesdata/caps_2.12.0.s390x.xml
|
|
|
982648 |
@@ -134,6 +134,7 @@
|
|
|
982648 |
<flag name='chardev-fd-pass'/>
|
|
|
982648 |
<flag name='tpm-emulator'/>
|
|
|
982648 |
<flag name='egl-headless'/>
|
|
|
982648 |
+ <flag name='vfio-pci.display'/>
|
|
|
982648 |
<version>2012000</version>
|
|
|
982648 |
<kvmVersion>0</kvmVersion>
|
|
|
982648 |
<microcodeVersion>375999</microcodeVersion>
|
|
|
982648 |
diff --git a/tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml
|
|
|
982648 |
index 37d17786cf..78889facce 100644
|
|
|
982648 |
--- a/tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml
|
|
|
982648 |
+++ b/tests/qemucapabilitiesdata/caps_2.12.0.x86_64.xml
|
|
|
982648 |
@@ -212,6 +212,7 @@
|
|
|
982648 |
<flag name='mch.extended-tseg-mbytes'/>
|
|
|
982648 |
<flag name='sev-guest'/>
|
|
|
982648 |
<flag name='egl-headless'/>
|
|
|
982648 |
+ <flag name='vfio-pci.display'/>
|
|
|
982648 |
<version>2011090</version>
|
|
|
982648 |
<kvmVersion>0</kvmVersion>
|
|
|
982648 |
<microcodeVersion>416196</microcodeVersion>
|
|
|
982648 |
diff --git a/tests/qemucapabilitiesdata/caps_3.0.0.ppc64.xml b/tests/qemucapabilitiesdata/caps_3.0.0.ppc64.xml
|
|
|
982648 |
index 57bf5dba11..01bb968938 100644
|
|
|
982648 |
--- a/tests/qemucapabilitiesdata/caps_3.0.0.ppc64.xml
|
|
|
982648 |
+++ b/tests/qemucapabilitiesdata/caps_3.0.0.ppc64.xml
|
|
|
982648 |
@@ -168,6 +168,7 @@
|
|
|
982648 |
<flag name='machine.pseries.cap-hpt-max-page-size'/>
|
|
|
982648 |
<flag name='machine.pseries.cap-htm'/>
|
|
|
982648 |
<flag name='egl-headless'/>
|
|
|
982648 |
+ <flag name='vfio-pci.display'/>
|
|
|
982648 |
<version>2012050</version>
|
|
|
982648 |
<kvmVersion>0</kvmVersion>
|
|
|
982648 |
<microcodeVersion>446771</microcodeVersion>
|
|
|
982648 |
diff --git a/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml b/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml
|
|
|
982648 |
index 431910a9e3..4bc7cfeebc 100644
|
|
|
982648 |
--- a/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml
|
|
|
982648 |
+++ b/tests/qemucapabilitiesdata/caps_3.0.0.x86_64.xml
|
|
|
982648 |
@@ -215,6 +215,7 @@
|
|
|
982648 |
<flag name='sev-guest'/>
|
|
|
982648 |
<flag name='usb-storage.werror'/>
|
|
|
982648 |
<flag name='egl-headless'/>
|
|
|
982648 |
+ <flag name='vfio-pci.display'/>
|
|
|
982648 |
<version>2012090</version>
|
|
|
982648 |
<kvmVersion>0</kvmVersion>
|
|
|
982648 |
<microcodeVersion>438109</microcodeVersion>
|
|
|
982648 |
--
|
|
|
982648 |
2.18.0
|
|
|
982648 |
|