qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v4] virtio-pci: error out when both legacy and modern modes are disabled
@ 2016-07-21 21:21 Greg Kurz
  2016-07-21 21:55 ` Greg Kurz
  2016-07-22  8:04 ` Cornelia Huck
  0 siblings, 2 replies; 9+ messages in thread
From: Greg Kurz @ 2016-07-21 21:21 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: Cornelia Huck, Eric Blake, qemu-devel, Marcel Apfelbaum

From: Greg Kurz <gkurz@linux.vnet.ibm.com>

Without presuming if we got there because of a user mistake or some
more subtle bug in the tooling, it really does not make sense to
implement a non-functional device.

Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Signed-off-by: Greg Kurz <groug@kaod.org>
---
v4: - rephrased error message and provide a hint to the user
    - split string literals to stay below 80 characters
    - added Marcel's R-b tag
---
 hw/virtio/virtio-pci.c |    8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
index 755f9218b77d..72c4b392ffda 100644
--- a/hw/virtio/virtio-pci.c
+++ b/hw/virtio/virtio-pci.c
@@ -1842,6 +1842,14 @@ static void virtio_pci_dc_realize(DeviceState *qdev, Error **errp)
     VirtIOPCIProxy *proxy = VIRTIO_PCI(qdev);
     PCIDevice *pci_dev = &proxy->pci_dev;
 
+    if (!(virtio_pci_modern(proxy) || virtio_pci_legacy(proxy))) {
+        error_setg(errp, "device cannot work when both modern and legacy modes"
+                   " are disabled");
+        error_append_hint(errp, "Set either disable-modern or disable-legacy"
+                          " to off\n");
+        return;
+    }
+
     if (!(proxy->flags & VIRTIO_PCI_FLAG_DISABLE_PCIE) &&
         virtio_pci_modern(proxy)) {
         pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS;

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-07-22 14:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-21 21:21 [Qemu-devel] [PATCH v4] virtio-pci: error out when both legacy and modern modes are disabled Greg Kurz
2016-07-21 21:55 ` Greg Kurz
2016-07-22  7:51   ` Marcel Apfelbaum
2016-07-22  8:04 ` Cornelia Huck
2016-07-22 10:11   ` Greg Kurz
2016-07-22 10:32     ` Cornelia Huck
2016-07-22 13:23       ` Greg Kurz
2016-07-22 13:42         ` Cornelia Huck
2016-07-22 14:00           ` Greg Kurz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).