From 9ffaced134ca390da22b267c5e8e88dd280daa57 Mon Sep 17 00:00:00 2001 From: Leonardo da Cunha Date: Fri, 3 May 2024 08:28:22 -0700 Subject: [PATCH] nvme-print: Added "Command and Feature Lockdown" string to LID 0x14 NVMe Spec 2.0 added LID 0x14. Signed-off-by: Leonardo da Cunha --- nvme-print.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nvme-print.c b/nvme-print.c index c3993f19..b508a4cc 100644 --- a/nvme-print.c +++ b/nvme-print.c @@ -712,6 +712,7 @@ const char *nvme_log_to_string(__u8 lid) case NVME_LOG_LID_ENDURANCE_GRP_EVT: return "Endurance Group Event Aggregate"; case NVME_LOG_LID_FID_SUPPORTED_EFFECTS: return "Feature Identifiers Supported and Effects"; case NVME_LOG_LID_MI_CMD_SUPPORTED_EFFECTS: return "NVMe-MI Commands Supported and Effects"; + case NVME_LOG_LID_CMD_AND_FEAT_LOCKDOWN: return "Command and Feature Lockdown"; case NVME_LOG_LID_BOOT_PARTITION: return "Boot Partition"; case NVME_LOG_LID_FDP_CONFIGS: return "FDP Configurations"; case NVME_LOG_LID_FDP_RUH_USAGE: return "Reclaim Unit Handle Usage"; -- 2.50.1