diff options
author | Mark O'Donovan <shiftee@posteo.net> | 2023-10-11 08:45:12 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-12-20 17:00:22 +0100 |
commit | 6cb3741c45824cac2696eb9948cdc5e4192583d1 (patch) | |
tree | d48b7fac19898cff2e3eeb8b00765444172450b4 | |
parent | 83bb13bf6c230687a0833707a2e490939cd718f6 (diff) | |
download | linux-stable-6cb3741c45824cac2696eb9948cdc5e4192583d1.tar.gz linux-stable-6cb3741c45824cac2696eb9948cdc5e4192583d1.tar.bz2 linux-stable-6cb3741c45824cac2696eb9948cdc5e4192583d1.zip |
nvme-auth: set explanation code for failure2 msgs
[ Upstream commit 38ce1570e2c46e7e9af983aa337edd7e43723aa2 ]
Some error cases were not setting an auth-failure-reason-code-explanation.
This means an AUTH_Failure2 message will be sent with an explanation value
of 0 which is a reserved value.
Signed-off-by: Mark O'Donovan <shiftee@posteo.net>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/nvme/host/auth.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/nvme/host/auth.c b/drivers/nvme/host/auth.c index 9dfd3d029305..69aef668f105 100644 --- a/drivers/nvme/host/auth.c +++ b/drivers/nvme/host/auth.c @@ -834,6 +834,8 @@ static void nvme_queue_auth_work(struct work_struct *work) } fail2: + if (chap->status == 0) + chap->status = NVME_AUTH_DHCHAP_FAILURE_FAILED; dev_dbg(ctrl->device, "%s: qid %d send failure2, status %x\n", __func__, chap->qid, chap->status); tl = nvme_auth_set_dhchap_failure2_data(ctrl, chap); |