All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nvme: fixup boot failure on nvme-pci
@ 2025-04-14 12:05 hare
  2025-04-14 12:26 ` Christoph Hellwig
  2025-04-14 22:09 ` Sagi Grimberg
  0 siblings, 2 replies; 7+ messages in thread
From: hare @ 2025-04-14 12:05 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Sagi Grimberg, Keith Busch, linux-nvme, Hannes Reinecke,
	Srikanth Aithal

From: Hannes Reinecke <hare@kernel.org>

Commit 62baf70c3274 caused the ANA log page to be re-read, even on systems
where the ANA is not supported.

Fixes: 62baf70c3274 ("nvme: re-read ANA log page after ns scan completes")

Signed-off-by: Hannes Reinecke <hare@kernel.org>
Tested-by: Srikanth Aithal <sraithal@amd.com>
---
 drivers/nvme/host/core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index b502ac07483b..eb6ea8acb3cc 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -4300,7 +4300,7 @@ static void nvme_scan_work(struct work_struct *work)
 	if (test_bit(NVME_AER_NOTICE_NS_CHANGED, &ctrl->events))
 		nvme_queue_scan(ctrl);
 #ifdef CONFIG_NVME_MULTIPATH
-	else
+	else if (ctrl->ana_log_buf)
 		/* Re-read the ANA log page to not miss updates */
 		queue_work(nvme_wq, &ctrl->ana_work);
 #endif
-- 
2.35.3



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

end of thread, other threads:[~2025-04-16 15:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-14 12:05 [PATCH] nvme: fixup boot failure on nvme-pci hare
2025-04-14 12:26 ` Christoph Hellwig
2025-04-14 13:07   ` Aithal, Srikanth
2025-04-14 14:23   ` Domenico Andreoli
2025-04-16  6:48   ` Aithal, Srikanth
2025-04-16 14:29     ` Keith Busch
2025-04-14 22:09 ` Sagi Grimberg

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.