Condividi tramite


Funzione StorPortGetRequestInfo (storport.h)

La routine StorPortGetRequestInfo recupera le informazioni sulla richiesta I/O associate a un blocco di richieste SCSI (SRB) e la restituisce in una struttura STOR_REQUEST_INFO .

Sintassi

ULONG StorPortGetRequestInfo(
  [in]  PVOID               HwDeviceExtension,
  [in]  PSCSI_REQUEST_BLOCK Srb,
  [out] PSTOR_REQUEST_INFO  RequestInfo
);

Parametri

[in] HwDeviceExtension

Puntatore all'estensione del dispositivo hardware per l'adattatore del bus host (HBA).

[in] Srb

Puntatore a SRB da eseguire una query.

[out] RequestInfo

Puntatore a una struttura di STOR_REQUEST_INFO fornita dal chiamante.

Valore restituito

La routine StorPortGetRequestInfo restituisce uno dei codici di stato seguenti:

Codice restituito Descrizione
STOR_STATUS_UNSUPPORTED_VERSION
La versione specificata per STOR_REQUEST_INFO non è valida.
STOR_STATUS_SUCCESS
L'operazione è stata completata.
STOR_STATUS_INVALID_PARAMETER
Srb o RequestInfo è impostato su NULL.

Commenti

Il chiamante storPortGetRequestInfo deve impostare il membro Version di RequestInfo su STOR_REQUEST_INFO_VER_1. In caso contrario, la funzione restituirà STOR_STATUS_UNSUPPORTED_VERSION.

Requisiti

Requisito Valore
Client minimo supportato Disponibile in Windows 8 e versioni successive di Windows.
Piattaforma di destinazione Universale
Intestazione Storport.h (include Storport.h)
IRQL Qualsiasi

Vedi anche

STOR_REQUEST_INFO