qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] virtio-pci: warn when both legacy and modern modes are disabled
@ 2016-05-12  9:45 Greg Kurz
  2016-07-21  9:24 ` Greg Kurz
  0 siblings, 1 reply; 6+ messages in thread
From: Greg Kurz @ 2016-05-12  9:45 UTC (permalink / raw)
  To: Michael S. Tsirkin; +Cc: qemu-devel

Without presuming if we got there because of a user mistake or some
more subtile bug in the tooling, it doesn't hurt to log somewhere that
the device won't be functional.

Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
---
 hw/virtio/virtio-pci.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
index 0f634d2d776e..a74978cb5e83 100644
--- a/hw/virtio/virtio-pci.c
+++ b/hw/virtio/virtio-pci.c
@@ -1639,6 +1639,10 @@ static void virtio_pci_device_plugged(DeviceState *d, Error **errp)
     uint32_t size;
     VirtIODevice *vdev = virtio_bus_get_device(&proxy->bus);
 
+    if (!legacy && !modern) {
+        error_report("Warning: device is unserviceable when both legacy and modern modes are disabled. At least one of the disable-modern or disable-legacy properties should be set to false.");
+    }
+
     config = proxy->pci_dev.config;
     if (proxy->class_code) {
         pci_config_set_class(config, proxy->class_code);

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

end of thread, other threads:[~2016-07-21 16:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-12  9:45 [Qemu-devel] [PATCH] virtio-pci: warn when both legacy and modern modes are disabled Greg Kurz
2016-07-21  9:24 ` Greg Kurz
2016-07-21 11:07   ` Cornelia Huck
2016-07-21 14:43     ` Greg Kurz
2016-07-21 15:32       ` Marcel Apfelbaum
2016-07-21 16:20         ` 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).