STOR_SCATTER_GATHER_ELEMENT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// storport.h

typedef struct _STOR_SCATTER_GATHER_ELEMENT {
  STOR_PHYSICAL_ADDRESS PhysicalAddress;
  ULONG                 Length;
  ULONG_PTR             Reserved;
} STOR_SCATTER_GATHER_ELEMENT, *PSTOR_SCATTER_GATHER_ELEMENT;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-storport-_stor_scatter_gather_element)

_STOR_SCATTER_GATHER_ELEMENT structure

Description

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

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.

See also

STOR_SCATTER_GATHER_LIST

StorPortGetScatterGatherList