From: Maurizio Lombardi Date: Wed, 10 Apr 2024 09:48:41 +0000 (+0200) Subject: nvmet-auth: return the error code to the nvmet_auth_host_hash() callers X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=46b8f9f74f6d500871985e22eb19560b21f3bc81;p=linux.git nvmet-auth: return the error code to the nvmet_auth_host_hash() callers If the nvmet_auth_host_hash() function fails, the error code should be returned to its callers. Signed-off-by: Maurizio Lombardi Reviewed-by: Sagi Grimberg Reviewed-by: Chaitanya Kulkarni Signed-off-by: Keith Busch --- diff --git a/drivers/nvme/target/auth.c b/drivers/nvme/target/auth.c index 3ddbc3880cac8..9e51c064b0728 100644 --- a/drivers/nvme/target/auth.c +++ b/drivers/nvme/target/auth.c @@ -370,7 +370,7 @@ out_free_response: nvme_auth_free_key(transformed_key); out_free_tfm: crypto_free_shash(shash_tfm); - return 0; + return ret; } int nvmet_auth_ctrl_hash(struct nvmet_req *req, u8 *response,