From 13fa24c2b69dcd5a2bc456bfdf9a72927c6cca10 Mon Sep 17 00:00:00 2001 From: Gollu Appalanaidu Date: Sun, 16 May 2021 09:21:46 +0530 Subject: [PATCH] nvme: fix csi data type in list_ns Command Set Identifier (CSI) data type is 8 bits, fix that. Signed-off-by: Gollu Appalanaidu --- nvme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvme.c b/nvme.c index 8968778d..94015710 100644 --- a/nvme.c +++ b/nvme.c @@ -1436,7 +1436,7 @@ static int list_ns(int argc, char **argv, struct command *cmd, struct plugin *pl struct config { __u32 namespace_id; int all; - __u16 csi; + __u8 csi; }; struct config cfg = { -- 2.50.1