aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/nvme
diff options
context:
space:
mode:
authorKenneth Heitke <kenneth.heitke@intel.com>2019-04-04 12:57:45 -0600
committerChristoph Hellwig <hch@lst.de>2019-04-05 08:07:58 +0200
commitd0de579c043c3a2ab60ce75eb6cf4d414becc676 (patch)
treeb8a52678e908d88124136353ceaeb422ae59a592 /drivers/nvme
parentnvmet: add safety check for subsystem lock during nvmet_ns_changed (diff)
downloadlinux-dev-d0de579c043c3a2ab60ce75eb6cf4d414becc676.tar.xz
linux-dev-d0de579c043c3a2ab60ce75eb6cf4d414becc676.zip
nvme: log the error status on Identify Namespace failure
Identify Namespace failures are logged as a warning but there is not an indication of the cause for the failure. Update the log message to include the error status. Signed-off-by: Kenneth Heitke <kenneth.heitke@intel.com> Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme')
-rw-r--r--drivers/nvme/host/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index b5939112b9b6..ddb943395118 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -1105,7 +1105,7 @@ static struct nvme_id_ns *nvme_identify_ns(struct nvme_ctrl *ctrl,
error = nvme_submit_sync_cmd(ctrl->admin_q, &c, id, sizeof(*id));
if (error) {
- dev_warn(ctrl->device, "Identify namespace failed\n");
+ dev_warn(ctrl->device, "Identify namespace failed (%d)\n", error);
kfree(id);
return NULL;
}