On Fri, Aug 26, 2005 at 11:47:22AM -0400, Luben Tuikov wrote:
> Do you think it would be beneficial to revisit struct
> scsi_target to something like struct scsi_domain_device and
> have a kobject in it.  Then the FC/SAS/iSCSI/USB layer upon finding
> a domain device, they call a suitable function which allocates them
> struct scsi_domain_device, which sets the "release" method for the
> kobject embedded.  Then they call SCSI Core to register the domain device.
> (All in all, the transport layer may also do kobject_get.)
> SCSI Core does kobject_register (thus kobject_get) and starts
> doing LU discovery for the device (all through the pointer to struct
> scsi_domain_device), and thus the LUs are discovered and struct
> scsi_device is created for each one.

No need to do silly renaming, but yes, moving creating of scsi_target
structures to the transport does make sense.  It's kinda implicit
in the todo list I posted.  I also don't really see the point of
the embedded kobject.

> Yeah, that sounds cool.  In effect, all you'll have is a struct list_head
> of LUs, and that list_head would live in the struct scsi_domain_device.

We actually already have a list in the scsi_target that chains of the
scsi_device, .devices in scsi_target and .same_target_siblings in scsi_device.
We just need to use it everywhere.

> >  (4) eventually move the traditional scsi_scan_target and other functions
> >      that lookup a scsi_target based on ->id into the spi transport class
> 
> Even simpler: the transport layer, calls SCSI Core, saying: "Hey here is
> a pointer to struct scsi_domain_device.  If you want, you an send REPORT
> LUNS and other things to it."

Yes. that's what I ment with my item (3) (sorry, I hate all this
techno-babble, simple language is much easier to understand normally)

-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to