public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* I want scsi_target_block() in interrupt context
@ 2005-06-29 17:27 Roland Dreier
  2005-06-29 17:36 ` Christoph Hellwig
  0 siblings, 1 reply; 8+ messages in thread
From: Roland Dreier @ 2005-06-29 17:27 UTC (permalink / raw)
  To: linux-scsi

I'm working on an implementation of SCSI RDMA Protocol (SRP) on
InfiniBand, and I'm running into an issue managing the number of
commands that get queued.

The setup is like this: each SRP scsi_host can connect to multiple
target ports.  Each target port can have multiple LUNs behind it.  To
support this, for each connection, I create a device, set its parent
to the scsi_host's shost_gendev, and then call scsi_scan_target to
discover the LUNs behind the target port.

This mostly works fine, except the number of outstanding commands is
limited per connection.  This doesn't fit that well with the Linux
SCSI stack -- can_queue for the scsi_host doesn't work, since a single
scsi_host can have multiple connections, and cmd_per_lun doesn't work
since a single connection can have many LUNs.

What seems like it _would_ be exactly what I need would be calling
scsi_target_block() on the device representing the connection.
Unfortunately, scsi_target_block() uses all sorts of device model
stuff that takes semaphores and hence potentially sleeps.  This means
that I can't block a connection while holding a lock to prevent races.

So I don't see a race-free way I can ensure that I never queue up too
many commands on a given connection.

Any advice?

Thanks a lot,
  Roland

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2005-07-01  0:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-29 17:27 I want scsi_target_block() in interrupt context Roland Dreier
2005-06-29 17:36 ` Christoph Hellwig
2005-06-29 17:52   ` Roland Dreier
2005-06-29 20:20     ` Mike Christie
2005-06-29 20:41       ` Roland Dreier
2005-06-29 20:48         ` Mike Christie
2005-06-30  0:01           ` Roland Dreier
2005-07-01  0:24             ` Mike Christie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox