[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20211129111854.44006-1-zhangliguang@linux.alibaba.com>
Date: Mon, 29 Nov 2021 19:18:54 +0800
From: Liguang Zhang <zhangliguang@...ux.alibaba.com>
To: Keith Busch <kbusch@...nel.org>, Jens Axboe <axboe@...com>,
Christoph Hellwig <hch@....de>,
Sagi Grimberg <sagi@...mberg.me>
Cc: linux-nvme@...ts.infradead.org, linux-kernel@...r.kernel.org,
Liguang Zhang <zhangliguang@...ux.alibaba.com>
Subject: [PATCH] nvme: duplicate NQNs check if devices needed
If a device provides an NQN it is expected to be globally unique.
Unfortunately some firmware revisions for Intel P4500/P4510 and some
other old devices did not satisfy this requirement. If devices have the
same subnqn field, after a kernel upgrade from 4.19 to 5.10, if a system
has >1 affected device then only one device is enabled. Error like this:
nvme nvme2: Duplicate cntlid 0 with nvme0, rejecting
nvme nvme3: Duplicate cntlid 1 with nvme1, rejecting
In these circumstances, if subnqn did not begin with "nqn.", we assume
that devices did not need subnqn check.
Signed-off-by: Liguang Zhang <zhangliguang@...ux.alibaba.com>
---
drivers/nvme/host/core.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 4c63564adeaa..80abb4526932 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -2587,6 +2587,9 @@ static struct nvme_subsystem *__nvme_find_get_subsystem(const char *subsysnqn)
lockdep_assert_held(&nvme_subsystems_lock);
+ if (strncmp(subsysnqn, "nqn.", 4))
+ return NULL;
+
/*
* Fail matches for discovery subsystems. This results
* in each discovery controller bound to a unique subsystem.
--
2.19.1.6.gb485710b
Powered by blists - more mailing lists