From e98ae99eea04e61bee07d2e6aeddbf95dfd364fa Mon Sep 17 00:00:00 2001 From: Minwoo Im Date: Sun, 25 Aug 2019 22:25:28 +0900 Subject: [PATCH] id-ctrl: show Endurance Group Maximum ID(ENDGIDMAX) 1.4 has introduced the Enduracne Group concept. This field will indicate the maximum ID of the Endurance Group. Signed-off-by: Minwoo Im --- nvme-print.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nvme-print.c b/nvme-print.c index e419e73b..10802d99 100644 --- a/nvme-print.c +++ b/nvme-print.c @@ -1142,6 +1142,7 @@ void __show_nvme_id_ctrl(struct nvme_id_ctrl *ctrl, unsigned int mode, void (*ve printf("hmminds : %d\n", le32_to_cpu(ctrl->hmminds)); printf("hmmaxd : %d\n", le16_to_cpu(ctrl->hmmaxd)); printf("nsetidmax : %d\n", le16_to_cpu(ctrl->nsetidmax)); + printf("endgidmax : %d\n", le16_to_cpu(ctrl->endgidmax)); printf("anatt : %d\n", ctrl->anatt); printf("anacap : %d\n", ctrl->anacap); if (human) -- 2.50.1