Article ID: 251369 - Last Review: February 12, 2007 - Revision: 2.2 INFO: SCSI Pass Through Functionality and LimitationsThis article was previously published under Q251369 SUMMARY
On Windows NT and Windows 2000, the interface used in an application to send SCSI commands to a SCSI device is called SCSI Pass Through (SPT). A Win32 program uses DeviceIoControl with the IoControlCode of IOCTL_SCSI_PASS_THROUGH or IOCTL_SCSI_PASS_THROUGH_DIRECT. This article explains some of the functionality and limitations of the SCSI Pass Through interface.
MORE INFORMATIONSynchronous RequestsThe SPT requests are always synchronous. Even if the caller has specified overlapped I/O (FILE_FLAG_OVERLAPPED) and passed the overlapped structure to the DeviceIoControl call, the ScsiPort driver will block the SPT request until the SCSI device completes it.When completed by the SCSI device (success or error), ScsiPort will complete the SPT request and the calling thread will be unblocked. Untagged QueuingA SCSI command can be send to the SCSI device as either untagged or tagged. Untagged queuing permits a device to accept commands from an initiator while executing commands from another. Tagged queuing gives the device the ability to accept a series of commands from the same or different initiators. The SPT always uses untagged queuing while sending commands to the device.REFERENCES
The SPT interface is documented in the Windows NT/Windows 2000 DDK documentation. For additional information on the SPT interface, click the article numbers below to view the articles in the Microsoft Knowledge Base: 137247
(http://support.microsoft.com/kb/137247/EN-US/
)
IOCTL_SCSI_MINIPORT and IOCTL_SCSI_PASS_THROUGH Limitations
241374
(http://support.microsoft.com/kb/241374/EN-US/
)
INFO: Read and Write Access Required for SCSI Pass Through Request
Sample:There is sample program (SPTI) available in the DDK that demonstrates the SPT interface. It can be found in the \Ddk\Src\Storage\Class\Spti folder. | Article Translations
|
Back to the top
