nvme-fabrics: check max outstanding commands
authorGuixin Liu <kanie@linux.alibaba.com>
Wed, 28 Feb 2024 02:37:59 +0000 (10:37 +0800)
committerKeith Busch <kbusch@kernel.org>
Sat, 2 Mar 2024 23:18:09 +0000 (15:18 -0800)
Maxcmd is mandatory for fabrics, check it early to identify the root
cause instead of waiting for it to propagate to "sqsize" and "allocing
queue".

By the way, change nvme_check_ctrl_fabric_info() to
nvmf_validate_identify_ctrl().

Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
drivers/nvme/host/core.c

index eed3e22e24d913ee91d9b23550504d1dbb931c0a..cb13f7c79eaf9c28af2a02397c20c8a30364c443 100644 (file)
@@ -3119,6 +3119,11 @@ static int nvme_check_ctrl_fabric_info(struct nvme_ctrl *ctrl, struct nvme_id_ct
                return -EINVAL;
        }
 
+       if (!ctrl->maxcmd) {
+               dev_err(ctrl->device, "Maximum outstanding commands is 0\n");
+               return -EINVAL;
+       }
+
        return 0;
 }