NVME_FUSED_OPERATION_CODES enumeration (nvme.h)

Contains values that indicate whether a command is the first or second command in a fused operation.

Syntax

typedef enum {
  NVME_FUSED_OPERATION_NORMAL,
  NVME_FUSED_OPERATION_FIRST_CMD,
  NVME_FUSED_OPERATION_SECOND_CMD
} NVME_FUSED_OPERATION_CODES;

Constants

 
NVME_FUSED_OPERATION_NORMAL
A normal operation without fusing commands.
NVME_FUSED_OPERATION_FIRST_CMD
The first command in a fused operation.
NVME_FUSED_OPERATION_SECOND_CMD
The second command in a fused operation.

Remarks

Use this enumeration to specify values in the FUSE field of the NVME_COMMAND_DWORD0 structure to indicate whether a command is part of a fused operation.

Requirements

Requirement Value
Minimum supported client Windows 10
Header nvme.h

See also

NVME_COMMAND_DWORD0