|
|
26ba25 |
From b872baa52f5e8e8c84b3a19bb6cf5b6e92106fb9 Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
Date: Tue, 24 Jul 2018 15:13:08 +0200
|
|
|
26ba25 |
Subject: [PATCH 264/268] virtio-scsi: fix hotplug ->reset() vs event race
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
Message-id: <20180724151308.20500-3-stefanha@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 81486
|
|
|
26ba25 |
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 2/2] virtio-scsi: fix hotplug ->reset() vs event race
|
|
|
26ba25 |
Bugzilla: 1607891
|
|
|
26ba25 |
RH-Acked-by: Igor Mammedov <imammedo@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Pankaj Gupta <pagupta@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
There is a race condition during hotplug when iothread is used. It
|
|
|
26ba25 |
occurs because virtio-scsi may be processing command queues in the
|
|
|
26ba25 |
iothread while the monitor performs SCSI device hotplug.
|
|
|
26ba25 |
|
|
|
26ba25 |
When a SCSI device is hotplugged the HotplugHandler->plug() callback is
|
|
|
26ba25 |
invoked and virtio-scsi emits a rescan event to the guest.
|
|
|
26ba25 |
|
|
|
26ba25 |
If the guest submits a SCSI command at this point then it may be
|
|
|
26ba25 |
cancelled before hotplug completes. This happens because ->reset() is
|
|
|
26ba25 |
called by hw/core/qdev.c:device_set_realized() after
|
|
|
26ba25 |
HotplugHandler->plug() has been called and
|
|
|
26ba25 |
hw/scsi/scsi-disk.c:scsi_disk_reset() purges all requests.
|
|
|
26ba25 |
|
|
|
26ba25 |
This patch uses the new HotplugHandler->post_plug() callback to emit the
|
|
|
26ba25 |
rescan event after ->reset(). This eliminates the race conditions where
|
|
|
26ba25 |
requests could be cancelled.
|
|
|
26ba25 |
|
|
|
26ba25 |
Reported-by: l00284672 <lizhengui@huawei.com>
|
|
|
26ba25 |
Cc: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
26ba25 |
Cc: Fam Zheng <famz@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
Message-Id: <20180716083732.3347-3-stefanha@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
26ba25 |
(cherry picked from commit 8449bcf94986156a1476d6647c75ec1ce3db64d0)
|
|
|
26ba25 |
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
hw/scsi/virtio-scsi.c | 11 ++++++++++-
|
|
|
26ba25 |
1 file changed, 10 insertions(+), 1 deletion(-)
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c
|
|
|
26ba25 |
index 9f754c4..52a3c1d 100644
|
|
|
26ba25 |
--- a/hw/scsi/virtio-scsi.c
|
|
|
26ba25 |
+++ b/hw/scsi/virtio-scsi.c
|
|
|
26ba25 |
@@ -806,8 +806,16 @@ static void virtio_scsi_hotplug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
|
|
26ba25 |
virtio_scsi_acquire(s);
|
|
|
26ba25 |
blk_set_aio_context(sd->conf.blk, s->ctx);
|
|
|
26ba25 |
virtio_scsi_release(s);
|
|
|
26ba25 |
-
|
|
|
26ba25 |
}
|
|
|
26ba25 |
+}
|
|
|
26ba25 |
+
|
|
|
26ba25 |
+/* Announce the new device after it has been plugged */
|
|
|
26ba25 |
+static void virtio_scsi_post_hotplug(HotplugHandler *hotplug_dev,
|
|
|
26ba25 |
+ DeviceState *dev)
|
|
|
26ba25 |
+{
|
|
|
26ba25 |
+ VirtIODevice *vdev = VIRTIO_DEVICE(hotplug_dev);
|
|
|
26ba25 |
+ VirtIOSCSI *s = VIRTIO_SCSI(vdev);
|
|
|
26ba25 |
+ SCSIDevice *sd = SCSI_DEVICE(dev);
|
|
|
26ba25 |
|
|
|
26ba25 |
if (virtio_vdev_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG)) {
|
|
|
26ba25 |
virtio_scsi_acquire(s);
|
|
|
26ba25 |
@@ -977,6 +985,7 @@ static void virtio_scsi_class_init(ObjectClass *klass, void *data)
|
|
|
26ba25 |
vdc->start_ioeventfd = virtio_scsi_dataplane_start;
|
|
|
26ba25 |
vdc->stop_ioeventfd = virtio_scsi_dataplane_stop;
|
|
|
26ba25 |
hc->plug = virtio_scsi_hotplug;
|
|
|
26ba25 |
+ hc->post_plug = virtio_scsi_post_hotplug;
|
|
|
26ba25 |
hc->unplug = virtio_scsi_hotunplug;
|
|
|
26ba25 |
}
|
|
|
26ba25 |
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|