diff options
author | 2025-03-22 19:28:48 -0400 | |
---|---|---|
committer | 2025-04-01 09:01:05 -0700 | |
commit | 47f8cc9e32c37343e18992c16ed2c7a9ac9ccd63 (patch) | |
tree | 06ebeaa452d45e1b79656446b9b2172e94a03e64 | |
parent | nvme/ioctl: move fixed buffer lookup to nvme_uring_cmd_io() (diff) | |
download | wireguard-linux-47f8cc9e32c37343e18992c16ed2c7a9ac9ccd63.tar.xz wireguard-linux-47f8cc9e32c37343e18992c16ed2c7a9ac9ccd63.zip |
nvme: update the multipath warning in nvme_init_ns_head
The new NVME_MULTIPATH_PARAM config option requires updates
to the warning message in nvme_init_ns_head().
Signed-off-by: John Meneghini <jmeneghi@redhat.com>
Tested-by: John Meneghini <jmeneghi@redhat.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/nvme/host/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 777db89fdaa7..5ffc8f23a174 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -3822,7 +3822,7 @@ static int nvme_init_ns_head(struct nvme_ns *ns, struct nvme_ns_info *info) "Found shared namespace %d, but multipathing not supported.\n", info->nsid); dev_warn_once(ctrl->device, - "Support for shared namespaces without CONFIG_NVME_MULTIPATH is deprecated and will be removed in Linux 6.0.\n"); + "Shared namespace support requires core_nvme.multipath=Y.\n"); } } |