[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 1/9] scsi/scsi_bus: switch search direction in scsi_device_fin
From: |
Maxim Levitsky |
Subject: |
[PATCH v5 1/9] scsi/scsi_bus: switch search direction in scsi_device_find |
Date: |
Sun, 13 Sep 2020 19:02:51 +0300 |
This change will allow us to convert the bus children list to RCU,
while not changing the logic of this function
Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
hw/scsi/scsi-bus.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c
index df65cc2223..f8adfbc2a5 100644
--- a/hw/scsi/scsi-bus.c
+++ b/hw/scsi/scsi-bus.c
@@ -1572,7 +1572,7 @@ SCSIDevice *scsi_device_find(SCSIBus *bus, int channel,
int id, int lun)
BusChild *kid;
SCSIDevice *target_dev = NULL;
- QTAILQ_FOREACH_REVERSE(kid, &bus->qbus.children, sibling) {
+ QTAILQ_FOREACH(kid, &bus->qbus.children, sibling) {
DeviceState *qdev = kid->child;
SCSIDevice *dev = SCSI_DEVICE(qdev);
@@ -1580,7 +1580,15 @@ SCSIDevice *scsi_device_find(SCSIBus *bus, int channel,
int id, int lun)
if (dev->lun == lun) {
return dev;
}
- target_dev = dev;
+
+ /*
+ * If we don't find exact match (channel/bus/lun),
+ * we will return the first device which matches channel/bus
+ */
+
+ if (!target_dev) {
+ target_dev = dev;
+ }
}
}
return target_dev;
--
2.26.2
- [PATCH v5 0/9] Fix scsi devices plug/unplug races w.r.t virtio-scsi iothread, Maxim Levitsky, 2020/09/13
- [PATCH v5 1/9] scsi/scsi_bus: switch search direction in scsi_device_find,
Maxim Levitsky <=
- [PATCH v5 2/9] rcu: Implement drain_call_rcu, Maxim Levitsky, 2020/09/13
- [PATCH v5 3/9] device_core: use drain_call_rcu in in hmp_device_del/qmp_device_add, Maxim Levitsky, 2020/09/13
- [PATCH v5 4/9] device-core: use RCU for list of childs of a bus, Maxim Levitsky, 2020/09/13
- [PATCH v5 5/9] device-core: use atomic_set on .realized property, Maxim Levitsky, 2020/09/13
- [PATCH v5 6/9] scsi/scsi-bus: scsi_device_find: don't return unrealized devices, Maxim Levitsky, 2020/09/13
- [PATCH v5 7/9] scsi/scsi_bus: Add scsi_device_get, Maxim Levitsky, 2020/09/13
- [PATCH v5 8/9] virtio-scsi: use scsi_device_get, Maxim Levitsky, 2020/09/13
- [PATCH v5 9/9] scsi/scsi_bus: fix races in REPORT LUNS, Maxim Levitsky, 2020/09/13