From 628683cb8196ef444816711108f646ebcd3755a0 Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Wed, 22 Jul 2015 16:10:29 +0000 Subject: [PATCH] nvmecontrol: read controller identify data before any log page operations MFC after: 3 days Sponsored by: Intel --- sbin/nvmecontrol/logpage.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sbin/nvmecontrol/logpage.c b/sbin/nvmecontrol/logpage.c index e3309885e39f..ac443bbe15b1 100644 --- a/sbin/nvmecontrol/logpage.c +++ b/sbin/nvmecontrol/logpage.c @@ -298,6 +298,8 @@ logpage(int argc, char *argv[]) open_dev(argv[optind], &fd, 1, 1); } + read_controller_data(fd, &cdata); + /* * The log page attribtues indicate whether or not the controller * supports the SMART/Health information log page on a per @@ -307,7 +309,6 @@ logpage(int argc, char *argv[]) if (log_page != NVME_LOG_HEALTH_INFORMATION) errx(1, "log page %d valid only at controller level", log_page); - read_controller_data(fd, &cdata); if (cdata.lpa.ns_smart == 0) errx(1, "controller does not support per namespace "