All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nvme-multipath: fix typo clearing NVME_NSHEAD_DISK_LIVE
@ 2024-08-19 12:27 Hannes Reinecke
  2024-08-19 13:18 ` Sagi Grimberg
  2024-08-22  6:56 ` Christoph Hellwig
  0 siblings, 2 replies; 5+ messages in thread
From: Hannes Reinecke @ 2024-08-19 12:27 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: Keith Busch, Sagi Grimberg, linux-nvme, Hannes Reinecke

NVME_NSHEAD_DISK_LIVE is a flag for 'struct nvme_nshead', not
'struct nvme_ns'.

Fixes: 11384580e332 ("nvme-multipath: add error handling support for add_disk()")

Signed-off-by: Hannes Reinecke <hare@kernel.org>
---
 drivers/nvme/host/multipath.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nvme/host/multipath.c b/drivers/nvme/host/multipath.c
index 91d9eb3c22ef..c9d23b1b8efc 100644
--- a/drivers/nvme/host/multipath.c
+++ b/drivers/nvme/host/multipath.c
@@ -646,7 +646,7 @@ static void nvme_mpath_set_live(struct nvme_ns *ns)
 		rc = device_add_disk(&head->subsys->dev, head->disk,
 				     nvme_ns_attr_groups);
 		if (rc) {
-			clear_bit(NVME_NSHEAD_DISK_LIVE, &ns->flags);
+			clear_bit(NVME_NSHEAD_DISK_LIVE, &head->flags);
 			return;
 		}
 		nvme_add_ns_head_cdev(head);
-- 
2.35.3



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

end of thread, other threads:[~2024-08-22  6:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-19 12:27 [PATCH] nvme-multipath: fix typo clearing NVME_NSHEAD_DISK_LIVE Hannes Reinecke
2024-08-19 13:18 ` Sagi Grimberg
2024-08-19 13:50   ` Hannes Reinecke
2024-08-19 14:23     ` Sagi Grimberg
2024-08-22  6:56 ` Christoph Hellwig

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.