// storport.h
STORPORT_API BOOLEAN StorPortPauseDevice(
[in] PVOID HwDeviceExtension,
[in] UCHAR PathId,
[in] UCHAR TargetId,
[in] UCHAR Lun,
ULONG Timeout
);
View the official Windows Driver Kit DDI referenceNo description available.
The StorPortPauseDevice routine pauses a specific logical unit device for the specified period of time.
HwDeviceExtension [in]A pointer to the hardware device extension. This is a per HBA storage area that the port driver allocates and initializes on behalf of the miniport driver. Miniport drivers usually store HBA-specific information in this extension, such as the state of the HBA and the mapped access ranges for the HBA. This area is available to the miniport driver immediately after the miniport driver calls StorPortInitialize. The port driver frees this memory when it removes the device.
PathId [in]Identifies the SCSI bus.
TargetId [in]Identifies the target controller or device on the bus.
Lun [in]Identifies the logical unit number of the target device.
TimeoutContains the interval of time that the device is to be paused, in seconds.
StorPortPauseDevice returns TRUE if the miniport driver succeeded in pausing the device, FALSE if not.
When the time-out expires, I/O requests to the device will be resumed.