Re: [PATCH] nvme: remove multipath module parameter
From: John Meneghini
Date: Tue Feb 18 2025 - 09:57:37 EST
On 2/18/25 9:05 AM, John Meneghini wrote:
+ if (info->is_shared) {
+ dev_warn(ctrl->device,
+ "Found shared namespace %d but multipathing not supported.\n",
+ info->nsid);
Or maybe this should be
+ if ((ctrl->subsys->cmic & NVME_CTRL_CMIC_MULTI_CTRL) && info->is_shared) {
+ dev_warn(ctrl->device,
+ "Found shared namespace %d but multipathing not supported.\n",
+ info->nsid);
/John