NVME_CDW10_GET_LOG_PAGE_V13 union (nvme.h)

Contains parameters for the Get Log Page command that returns a data buffer containing the requested log page.

[!NOTE] The format of the NVME_CDW10_GET_LOG_PAGE_V13 structure conforms to NVMe Specification version 1.3 or later. For NVMe Specifications prior to version 1.3, use the NVME_CDW10_GET_LOG_PAGE structure.

This structure is used in the CDW10_V13 field of the GETLOGPAGE parameter in the Command structure.

Syntax

typedef union {
  struct {
    ULONG LID : 8;
    ULONG LSP : 4;
    ULONG Reserved0 : 3;
    ULONG RAE : 1;
    ULONG NUMDL : 16;
  } DUMMYSTRUCTNAME;
  ULONG  AsUlong;
} NVME_CDW10_GET_LOG_PAGE_V13, *PNVME_CDW10_GET_LOG_PAGE_V13;

Members

DUMMYSTRUCTNAME

DUMMYSTRUCTNAME.LID

Specifies an NVME_LOG_PAGES value that identifies the log page to retrieve.

DUMMYSTRUCTNAME.LSP

Specifies log specific information.

DUMMYSTRUCTNAME.Reserved0

DUMMYSTRUCTNAME.RAE

The Reset Asynchronous Event (RAE) field.

DUMMYSTRUCTNAME.NUMDL

Specifies the number of Lower Dwords to return.

AsUlong

Requirements

Requirement Value
Minimum supported client Windows 10
Header nvme.h

See also