nvme: enable retries for authentication commands
authorHannes Reinecke <hare@suse.de>
Mon, 29 Jan 2024 06:39:48 +0000 (07:39 +0100)
committerKeith Busch <kbusch@kernel.org>
Wed, 31 Jan 2024 23:59:48 +0000 (15:59 -0800)
Authentication commands might trigger a lengthy computation on the
controller or even a callout to an external entity.
In these cases the controller might return a status without the DNR
bit set, indicating that the command should be retried.
This patch enables retries for authentication commands  by setting
NVME_SUBMIT_RETRY for __nvme_submit_sync_cmd().

Reported-by: Martin George <marting@netapp.com>
Signed-off-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Keith Busch <kbusch@kernel.org>
drivers/nvme/host/auth.c
drivers/nvme/host/core.c
drivers/nvme/host/nvme.h

index bf69be8966f44fcb0d09c7f3332dba3d2e94f97d..a264b3ae078b8c4c28382c7d8f8757c7e3eec594 100644 (file)
@@ -58,7 +58,7 @@ static int nvme_auth_submit(struct nvme_ctrl *ctrl, int qid,
                            void *data, size_t data_len, bool auth_send)
 {
        struct nvme_command cmd = {};
-       nvme_submit_flags_t flags = 0;
+       nvme_submit_flags_t flags = NVME_SUBMIT_RETRY;
        struct request_queue *q = ctrl->fabrics_q;
        int ret;
 
index aed099a4579119b75f7d2e6b6aa4a325b226a463..8b48b7f7871add4d3e2f731db068a3c7a1dca0c1 100644 (file)
@@ -1070,6 +1070,8 @@ int __nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,
        if (IS_ERR(req))
                return PTR_ERR(req);
        nvme_init_request(req, cmd);
+       if (flags & NVME_SUBMIT_RETRY)
+               req->cmd_flags &= ~REQ_FAILFAST_DRIVER;
 
        if (buffer && bufflen) {
                ret = blk_rq_map_kern(q, req, buffer, bufflen, GFP_KERNEL);
index 7d315b670e537e87f9ed6bc964c57340d99c0e72..945bf15dccec60a8bcc5e72ef205044c31ecd53f 100644 (file)
@@ -849,6 +849,8 @@ enum {
        NVME_SUBMIT_NOWAIT = (__force nvme_submit_flags_t)(1 << 1),
        /* Set BLK_MQ_REQ_RESERVED when allocating request */
        NVME_SUBMIT_RESERVED = (__force nvme_submit_flags_t)(1 << 2),
+       /* Retry command when NVME_SC_DNR is not set in the result */
+       NVME_SUBMIT_RETRY = (__force nvme_submit_flags_t)(1 << 3),
 };
 
 int nvme_submit_sync_cmd(struct request_queue *q, struct nvme_command *cmd,