From 6dd1c5817287ce0b9579e51a579fce886a1cba8d Mon Sep 17 00:00:00 2001 From: rick Date: Fri, 23 Aug 2024 14:45:55 +0200 Subject: [PATCH] nvme-print: print KV command set page header Let stdout_effects_log_page handle NVME_CSI_KV as well. Signed-off-by: laiaferrer --- nvme-print-stdout.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvme-print-stdout.c b/nvme-print-stdout.c index a885441d..90e9f568 100644 --- a/nvme-print-stdout.c +++ b/nvme-print-stdout.c @@ -3872,6 +3872,10 @@ static void stdout_effects_log_page(enum nvme_csi csi, printf("NVM Command Set Log Page\n"); printf("%-.80s\n", dash); break; + case NVME_CSI_KV: + printf("KV Command Set Log Page\n"); + printf("%-.80s\n", dash); + break; case NVME_CSI_ZNS: printf("ZNS Command Set Log Page\n"); printf("%-.80s\n", dash); -- 2.50.1