Skip to content

Commit 0236cb9

Browse files
committed
types.h: add missing enum for format nvm attributes
Add bit3, format NVM command support nsid value set to FFFFFFFFh enum and its description. Signed-off-by: Ankit Kumar <[email protected]>
1 parent 7470227 commit 0236cb9

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/nvme/types.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1529,11 +1529,16 @@ enum nvme_id_ctrl_fuses {
15291529
* @NVME_CTRL_FNA_CRYPTO_ERASE: If set, then cryptographic erase is
15301530
* supported. If cleared, then cryptographic
15311531
* erase is not supported.
1532+
* @NVME_CTRL_FNA_NSID_FFFFFFFF: If set, then format does not support
1533+
* nsid value set to FFFFFFFFh. If cleared,
1534+
* format supports nsid value set to
1535+
* FFFFFFFFh.
15321536
*/
15331537
enum nvme_id_ctrl_fna {
15341538
NVME_CTRL_FNA_FMT_ALL_NAMESPACES = 1 << 0,
15351539
NVME_CTRL_FNA_SEC_ALL_NAMESPACES = 1 << 1,
15361540
NVME_CTRL_FNA_CRYPTO_ERASE = 1 << 2,
1541+
NVME_CTRL_FNA_NSID_FFFFFFFF = 1 << 3,
15371542
};
15381543

15391544
/**

0 commit comments

Comments
 (0)