From: "Michael S. Tsirkin" <mst@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
Greg Kurz <groug@kaod.org>,
Cornelia Huck <cornelia.huck@de.ibm.com>,
Stefan Hajnoczi <stefanha@redhat.com>
Subject: [Qemu-devel] [PULL 11/13] virtio: allow broken device to notify guest
Date: Thu, 18 May 2017 00:45:29 +0300 [thread overview]
Message-ID: <1495057396-13387-12-git-send-email-mst@redhat.com> (raw)
In-Reply-To: <1495057396-13387-1-git-send-email-mst@redhat.com>
From: Greg Kurz <groug@kaod.org>
According to section 2.1.2 of the virtio-1 specification:
"The device SHOULD set DEVICE_NEEDS_RESET when it enters an error state that
a reset is needed. If DRIVER_OK is set, after it sets DEVICE_NEEDS_RESET,
the device MUST send a device configuration change notification to the
driver."
Commit "f5ed36635d8f virtio: stop virtqueue processing if device is broken"
introduced a virtio_error() call that just does that:
- internally mark the device as broken
- set the DEVICE_NEEDS_RESET bit in the status
- send a configuration change notification
Unfortunately, virtio_notify_vector(), called by virtio_notify_config(),
returns right away when the device is marked as broken and the notification
isn't sent in this case.
The spec doesn't say whether a broken device can send notifications
in other situations or not. But since the driver isn't supposed to do
anything but to reset the device, it makes sense to keep the check in
virtio_notify_config().
Marking the device as broken AFTER the configuration change notification was
sent is enough to fix the issue.
Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
hw/virtio/virtio.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c
index 03592c5..890b4d7 100644
--- a/hw/virtio/virtio.c
+++ b/hw/virtio/virtio.c
@@ -2451,12 +2451,12 @@ void GCC_FMT_ATTR(2, 3) virtio_error(VirtIODevice *vdev, const char *fmt, ...)
error_vreport(fmt, ap);
va_end(ap);
- vdev->broken = true;
-
if (virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1)) {
virtio_set_status(vdev, vdev->status | VIRTIO_CONFIG_S_NEEDS_RESET);
virtio_notify_config(vdev);
}
+
+ vdev->broken = true;
}
static void virtio_memory_listener_commit(MemoryListener *listener)
--
MST
next prev parent reply other threads:[~2017-05-17 21:45 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-17 21:44 [Qemu-devel] [PULL 00/13] pci, virtio, vhost: fixes Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 01/13] hw/acpi-defs: replace leading X with x_ in FADT field names Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 02/13] hw/arm/virt: generate 64-bit addressable ACPI objects Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 03/13] hw/virtio: fix vhost user fails to startup when MQ Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 04/13] libvhost-user: fix crash when rings aren't ready Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 05/13] pc/fwcfg: unbreak migration from qemu-2.5 and qemu-2.6 during firmware boot Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 06/13] pc: add 2.10 machine type Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 07/13] iommu: Don't crash if machine is not PC_MACHINE Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 08/13] ACPI: don't call acpi_pcihp_device_plug_cb on xen Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 09/13] acpi-defs: clean up open brace usage Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 10/13] Revert "hw/pci: disable pci-bridge's shpc by default" Michael S. Tsirkin
2017-05-17 21:45 ` Michael S. Tsirkin [this message]
2017-05-17 21:45 ` [Qemu-devel] [PULL 12/13] pci: deassert intx when pci device unrealize Michael S. Tsirkin
2017-05-17 21:45 ` [Qemu-devel] [PULL 13/13] exec: abstract address_space_do_translate() Michael S. Tsirkin
2017-05-17 22:29 ` [Qemu-devel] [PULL 00/13] pci, virtio, vhost: fixes no-reply
2017-05-17 22:34 ` Michael S. Tsirkin
2017-05-18 9:33 ` Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1495057396-13387-12-git-send-email-mst@redhat.com \
--to=mst@redhat.com \
--cc=cornelia.huck@de.ibm.com \
--cc=groug@kaod.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).