// irb.h
VOID AtaPortReleaseQueueTag(
PVOID DeviceExtension,
[in] UCHAR TargetId,
[in] UCHAR Lun,
[in] UCHAR QueueTag
);
View the official Windows Driver Kit DDI referenceNo description available.
The AtaPortReleaseQueueTag routine releases the specified queue tag.
Note The ATA port driver and ATA miniport driver models may be altered or unavailable in the future. Instead, we recommend using the Storport driver and Storport miniport driver models.
DeviceExtensionA pointer to the channel extension.
TargetId [in]Specifies the target identifier of the device.
Lun [in]Specifies the logical unit number of the device.
QueueTag [in]Specifies the queue tag to be freed.
The miniport driver should call AtaPortReleaseQueueTag to free allocated queue tags by using AtaPortAllocateQueueTag.