From f48a7a6e35bb6d50573cfb42f13878c593fb6c0c Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 28 Jul 2011 18:02:13 +0200 Subject: scsi: remove devs array from SCSIBus Change the devs array into a linked list, and add a scsi_device_find function to navigate the children list instead. This lets the SCSI bus use more complex addressing, and HBAs can talk to the correct device when there are multiple LUNs per target. scsi_device_find may return another LUN on the same target if none is found that matches exactly. Signed-off-by: Paolo Bonzini Signed-off-by: Kevin Wolf --- hw/scsi.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'hw/scsi.h') diff --git a/hw/scsi.h b/hw/scsi.h index b76c4ee0a4..add3d2db67 100644 --- a/hw/scsi.h +++ b/hw/scsi.h @@ -110,8 +110,6 @@ struct SCSIBus { SCSISense unit_attention; const SCSIBusInfo *info; - - SCSIDevice *devs[MAX_SCSI_DEVS]; }; void scsi_bus_new(SCSIBus *bus, DeviceState *host, const SCSIBusInfo *info); @@ -195,5 +193,6 @@ void scsi_req_abort(SCSIRequest *req, int status); void scsi_req_cancel(SCSIRequest *req); void scsi_device_purge_requests(SCSIDevice *sdev, SCSISense sense); int scsi_device_get_sense(SCSIDevice *dev, uint8_t *buf, int len, bool fixed); +SCSIDevice *scsi_device_find(SCSIBus *bus, int target, int lun); #endif -- cgit v1.2.3