STOR_SCATTER_GATHER_ELEMENT structure (storport.h)

The STOR_SCATTER_GATHER_ELEMENT structure is used with STOR_SCATTER_GATHER_LIST to build a list of scatter/gather elements.

Syntax

typedef struct _STOR_SCATTER_GATHER_ELEMENT {
  STOR_PHYSICAL_ADDRESS PhysicalAddress;
  ULONG                 Length;
  ULONG_PTR             Reserved;
} STOR_SCATTER_GATHER_ELEMENT, *PSTOR_SCATTER_GATHER_ELEMENT;

Members

PhysicalAddress

Contains the physical address of the scatter/gather element.

Length

Contains the length in bytes of this scatter/gather element.

Reserved

Reserved.

Remarks

Miniport drivers used with the Storport driver retrieve an array of these structures using StorPortGetScatterGatherList.

Requirements

Requirement Value
Header storport.h (include Storport.h)

See also

STOR_SCATTER_GATHER_LIST

StorPortGetScatterGatherList