nvme-auth: no need to reset chap contexts on re-authentication
authorSagi Grimberg <sagi@grimberg.me>
Sun, 13 Nov 2022 11:24:17 +0000 (13:24 +0200)
committerChristoph Hellwig <hch@lst.de>
Wed, 16 Nov 2022 07:36:36 +0000 (08:36 +0100)
Now that the chap context is reset upon completion, this is no longer
needed. Also remove nvme_auth_reset as no callers are left.

Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/host/auth.c
drivers/nvme/host/core.c
drivers/nvme/host/nvme.h

index 3bffd22221c9f2ca1a6b0e96952776fe8d76401b..d1d89920d03c92053570b3207b8eccbd6e853d6f 100644 (file)
@@ -901,19 +901,6 @@ int nvme_auth_wait(struct nvme_ctrl *ctrl, int qid)
 }
 EXPORT_SYMBOL_GPL(nvme_auth_wait);
 
-void nvme_auth_reset(struct nvme_ctrl *ctrl)
-{
-       struct nvme_dhchap_queue_context *chap;
-
-       mutex_lock(&ctrl->dhchap_auth_mutex);
-       list_for_each_entry(chap, &ctrl->dhchap_auth_list, entry) {
-               mutex_unlock(&ctrl->dhchap_auth_mutex);
-               flush_work(&chap->auth_work);
-               nvme_auth_reset_dhchap(chap);
-       }
-       mutex_unlock(&ctrl->dhchap_auth_mutex);
-}
-
 static void nvme_ctrl_auth_work(struct work_struct *work)
 {
        struct nvme_ctrl *ctrl =
index cb5e6d07a5f8321979a00e1d78e6a25907274a25..2944d9b565a266fd0d60659e2fac2a66497cf9b9 100644 (file)
@@ -3787,8 +3787,6 @@ static ssize_t nvme_ctrl_dhchap_secret_store(struct device *dev,
                host_key = ctrl->host_key;
                ctrl->host_key = key;
                nvme_auth_free_key(host_key);
-               /* Key has changed; re-authentication with new key */
-               nvme_auth_reset(ctrl);
        }
        /* Start re-authentication */
        dev_info(ctrl->device, "re-authenticating controller\n");
@@ -3841,8 +3839,6 @@ static ssize_t nvme_ctrl_dhchap_ctrl_secret_store(struct device *dev,
                ctrl_key = ctrl->ctrl_key;
                ctrl->ctrl_key = key;
                nvme_auth_free_key(ctrl_key);
-               /* Key has changed; re-authentication with new key */
-               nvme_auth_reset(ctrl);
        }
        /* Start re-authentication */
        dev_info(ctrl->device, "re-authenticating controller\n");
index ebd67e7dc11ef3816b94d1a3ed68a60fa1eb758d..e431ec348d5278b5894b0159595440bfa1243740 100644 (file)
@@ -1024,7 +1024,6 @@ int nvme_auth_init_ctrl(struct nvme_ctrl *ctrl);
 void nvme_auth_stop(struct nvme_ctrl *ctrl);
 int nvme_auth_negotiate(struct nvme_ctrl *ctrl, int qid);
 int nvme_auth_wait(struct nvme_ctrl *ctrl, int qid);
-void nvme_auth_reset(struct nvme_ctrl *ctrl);
 void nvme_auth_free(struct nvme_ctrl *ctrl);
 #else
 static inline int nvme_auth_init_ctrl(struct nvme_ctrl *ctrl)