diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2017-12-13 21:59:54 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2017-12-19 23:41:00 +0200 |
commit | 8fc47c876de638353bb635872f2c25bb7f4a3d6e (patch) | |
tree | e5cbbe9a3f4e2dbf320a6a2766a1a908475d4351 /hw/virtio/virtio.c | |
parent | e492dc5a267e2236b93b8b7192fedd840ef34dc9 (diff) |
virtio_error: don't invoke status callbacks
Backends don't need to know what frontend requested a reset,
and notifying then from virtio_error is messy because
virtio_error itself might be invoked from backend.
Let's just set the status directly.
Cc: qemu-stable@nongnu.org
Reported-by: Ilya Maximets <i.maximets@samsung.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/virtio/virtio.c')
-rw-r--r-- | hw/virtio/virtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index ad564b0132..d6002ee550 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio/virtio.c @@ -2469,7 +2469,7 @@ void GCC_FMT_ATTR(2, 3) virtio_error(VirtIODevice *vdev, const char *fmt, ...) va_end(ap); if (virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1)) { - virtio_set_status(vdev, vdev->status | VIRTIO_CONFIG_S_NEEDS_RESET); + vdev->status = vdev->status | VIRTIO_CONFIG_S_NEEDS_RESET; virtio_notify_config(vdev); } |