Skip to content

Commit

Permalink
types: add SLM and CP command set indicator values
Browse files Browse the repository at this point in the history
The values added in NVMe 2.1 specification.

Signed-off-by: Tokunori Ikegami <[email protected]>
  • Loading branch information
ikegami-t committed Feb 28, 2025
1 parent 0d8d0a5 commit ce9311f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/nvme/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,15 @@ enum nvme_constants {
* @NVME_CSI_NVM: NVM Command Set Indicator
* @NVME_CSI_KV: Key Value Command Set
* @NVME_CSI_ZNS: Zoned Namespace Command Set
* @NVME_CSI_SLM: Subsystem Local Memory Command Set
* @NVME_CSI_CP: Computational Programs Command Set
*/
enum nvme_csi {
NVME_CSI_NVM = 0,
NVME_CSI_KV = 1,
NVME_CSI_ZNS = 2,
NVME_CSI_SLM = 3,
NVME_CSI_CP = 4,
};

/**
Expand Down

0 comments on commit ce9311f

Please sign in to comment.