From ce9311f4e4ad4643f1e73ea437d25b184be95a3f Mon Sep 17 00:00:00 2001 From: Tokunori Ikegami Date: Sat, 1 Mar 2025 07:50:05 +0900 Subject: [PATCH] types: add SLM and CP command set indicator values The values added in NVMe 2.1 specification. Signed-off-by: Tokunori Ikegami --- src/nvme/types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nvme/types.h b/src/nvme/types.h index 4b0b5e7f..f3afd701 100644 --- a/src/nvme/types.h +++ b/src/nvme/types.h @@ -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, }; /**