Compartir a través de


STOR_FRU_ID_DESCRIPTION estructura (storport.h)

STOR_FRU_ID_DESCRIPTION es la estructura a la que apunta el parámetro Parameters cuando se llama a la rutina HwStorUnitControl de un miniporte con un ControlType de ScsiUnitQueryFruId o HwStorAdapterControl rutina con un ControlType de ScsiAdapterQueryFruId.

Sintaxis

typedef struct _STOR_FRU_ID_DESCRIPTION {
  ULONG         Version;
  ULONG         Size;
  PSTOR_ADDRESS Address;
  UCHAR         FruId[STOR_FRU_ID_MAX_LENGTH + 1];
} STOR_FRU_ID_DESCRIPTION, *PSTOR_FRU_ID_DESCRIPTION;

Miembros

Version

Versión de esta estructura. Actualmente se establece en STOR_FRU_ID_DESCRIPTION_STRUCTURE_VERSION_1.

Size

Tamaño total de esta estructura, en bytes. Debe ser >= sizeof(STOR_FRU_ID_DESCRIPTION).

Address

Puntero a una estructura STOR_ADDRESS que contiene la dirección de la unidad lógica (LUN).

FruId[STOR_FRU_ID_MAX_LENGTH + 1]

Identificador de la unidad de reemplazo de errores (FRU). El identificador fru es el identificador impreso físicamente en el hardware para identificarlo de forma única. FruId debe ser <= 128 caracteres ASCII.

Requisitos

Requisito Value
Servidor mínimo compatible Windows Server 2022
Encabezado storport.h

Consulte también

HwStorAdapterControl

HwStorUnitControl

STOR_ADDRESS