]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
nvmet-auth: remove unnecessary break after goto
authorChaitanya Kulkarni <kch@nvidia.com>
Fri, 19 May 2023 09:40:51 +0000 (02:40 -0700)
committerKeith Busch <kbusch@kernel.org>
Mon, 12 Jun 2023 17:36:59 +0000 (10:36 -0700)
Remove dead break after goto.

Signed-off-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
drivers/nvme/target/fabrics-cmd-auth.c

index 038032e46145873ee7f9e4a23f4e5b12d62ab831..586458f765f173b6ffa20b7abc58be5296c9ac91 100644 (file)
@@ -295,13 +295,11 @@ void nvmet_execute_auth_send(struct nvmet_req *req)
                        status = 0;
                }
                goto done_kfree;
-               break;
        case NVME_AUTH_DHCHAP_MESSAGE_SUCCESS2:
                req->sq->authenticated = true;
                pr_debug("%s: ctrl %d qid %d ctrl authenticated\n",
                         __func__, ctrl->cntlid, req->sq->qid);
                goto done_kfree;
-               break;
        case NVME_AUTH_DHCHAP_MESSAGE_FAILURE2:
                status = nvmet_auth_failure2(d);
                if (status) {
@@ -312,7 +310,6 @@ void nvmet_execute_auth_send(struct nvmet_req *req)
                        status = 0;
                }
                goto done_kfree;
-               break;
        default:
                req->sq->dhchap_status =
                        NVME_AUTH_DHCHAP_FAILURE_INCORRECT_MESSAGE;
@@ -320,7 +317,6 @@ void nvmet_execute_auth_send(struct nvmet_req *req)
                        NVME_AUTH_DHCHAP_MESSAGE_FAILURE2;
                req->sq->authenticated = false;
                goto done_kfree;
-               break;
        }
 done_failure1:
        req->sq->dhchap_status = NVME_AUTH_DHCHAP_FAILURE_INCORRECT_MESSAGE;