aboutsummaryrefslogtreecommitdiff
path: root/drivers/nvme
diff options
context:
space:
mode:
authorGravatar Keith Busch <keith.busch@intel.com> 2018-03-19 10:53:50 -0600
committerGravatar Jens Axboe <axboe@kernel.dk> 2018-03-26 08:53:43 -0600
commit2079699c10c8c60a9572540c2f77d045abf036eb (patch)
tree25e889ed724c69ee4a875c92966c0b5462b240e4 /drivers/nvme
parentnvme-rdma: Don't flush delete_wq by default during remove_one (diff)
downloadlinux-2079699c10c8c60a9572540c2f77d045abf036eb.tar.gz
linux-2079699c10c8c60a9572540c2f77d045abf036eb.tar.bz2
linux-2079699c10c8c60a9572540c2f77d045abf036eb.zip
nvme: Skip checking heads without namespaces
If a task is holding a reference to a namespace on a removed controller, the head will not be released. If the same controller is added again later, its namespaces may not be successfully added. Instead, the user will see kernel message "Duplicate IDs for nsid <X>". This patch fixes that by skipping heads that don't have namespaces when considering if a new namespace is safe to add. Reported-by: Alex Gagniuc <Alex_Gagniuc@Dellteam.com> Cc: stable@vger.kernel.org Signed-off-by: Keith Busch <keith.busch@intel.com> Reviewed-by: Max Gurtovoy <maxg@mellanox.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/nvme')
-rw-r--r--drivers/nvme/host/core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index f29a07ef122f..7811b4886e63 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -2809,6 +2809,7 @@ static int __nvme_check_ids(struct nvme_subsystem *subsys,
list_for_each_entry(h, &subsys->nsheads, entry) {
if (nvme_ns_ids_valid(&new->ids) &&
+ !list_empty(&h->list) &&
nvme_ns_ids_equal(&new->ids, &h->ids))
return -EINVAL;
}