public inbox for linux-nvme@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] nvme: add bug report info for global duplicate id
@ 2022-06-06 16:40 Keith Busch
  2022-06-06 17:15 ` Chaitanya Kulkarni
  2022-06-07 10:15 ` Christoph Hellwig
  0 siblings, 2 replies; 5+ messages in thread
From: Keith Busch @ 2022-06-06 16:40 UTC (permalink / raw)
  To: linux-nvme; +Cc: hch, sagi, Keith Busch

From: Keith Busch <kbusch@kernel.org>

The recent global id check is finding poorly implemented devices in the
wild. Include relavant device information in the output to help quicken
an appropriate quirk patch.

Signed-off-by: Keith Busch <kbusch@kernel.org>
---
 drivers/nvme/host/core.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 24165daee3c8..4cda5024a352 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -3852,6 +3852,13 @@ static int nvme_global_check_duplicate_ids(struct nvme_subsystem *this,
 	return ret;
 }
 
+static int nvme_str_len(char *s, int len)
+{
+	while (s[len - 1] == ' ')
+		len--;
+	return len;
+}
+
 static int nvme_init_ns_head(struct nvme_ns *ns, unsigned nsid,
 		struct nvme_ns_ids *ids, bool is_shared)
 {
@@ -3861,8 +3868,18 @@ static int nvme_init_ns_head(struct nvme_ns *ns, unsigned nsid,
 
 	ret = nvme_global_check_duplicate_ids(ctrl->subsys, ids);
 	if (ret) {
+		struct nvme_subsystem *subsys = ctrl->subsys;
+
 		dev_err(ctrl->device,
 			"globally duplicate IDs for nsid %d\n", nsid);
+		dev_err(ctrl->device,
+			"bug report info: VID:%04x model:%.*s firmware:%.*s\n",
+			subsys->vendor_id,
+			nvme_str_len(subsys->model, sizeof(subsys->model)),
+			subsys->model,
+			nvme_str_len(subsys->firmware_rev,
+				     sizeof(subsys->firmware_rev)),
+			subsys->firmware_rev);
 		return ret;
 	}
 
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-06-07 14:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-06 16:40 [PATCH] nvme: add bug report info for global duplicate id Keith Busch
2022-06-06 17:15 ` Chaitanya Kulkarni
2022-06-07 10:15 ` Christoph Hellwig
2022-06-07 14:23   ` Keith Busch
2022-06-07 14:44     ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox