Skip to content

Commit

Permalink
types: add NVME_ID_CTRL_NVM_LBAMQF definitions
Browse files Browse the repository at this point in the history
The field values added by NVM command set specification 1.1.

Signed-off-by: Tokunori Ikegami <[email protected]>
  • Loading branch information
ikegami-t committed Nov 24, 2024
1 parent 07ef70d commit df41fd3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/nvme/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -2862,6 +2862,18 @@ struct nvme_ns_list {
__le32 ns[NVME_ID_NS_LIST_MAX];
};

/**
* enum nvme_id_ctrl_nvm_lbamqf - LBA Migration Queue Format
* @NVME_ID_CTRL_NVM_LBAMQF_TYPE_0:
* @NVME_ID_CTRL_NVM_LBAMQF_VENDOR_MIN:
* @NVME_ID_CTRL_NVM_LBAMQF_VENDOR_MAX:
*/
enum nvme_id_ctrl_nvm_lbamqf {
NVME_ID_CTRL_NVM_LBAMQF_TYPE_0 = 0x0,
NVME_ID_CTRL_NVM_LBAMQF_VENDOR_MIN = 0xc0,
NVME_ID_CTRL_NVM_LBAMQF_VENDOR_MAX = 0xff,
};

/**
* struct nvme_id_ctrl_nvm - I/O Command Set Specific Identify Controller data structure
* @vsl: Verify Size Limit
Expand Down

0 comments on commit df41fd3

Please sign in to comment.