]> git.baikalelectronics.ru Git - kernel.git/commit
nvmet-auth: fix return value check in auth send
authorChaitanya Kulkarni <kch@nvidia.com>
Mon, 18 Jul 2022 23:12:32 +0000 (16:12 -0700)
committerJens Axboe <axboe@kernel.dk>
Tue, 2 Aug 2022 23:22:51 +0000 (17:22 -0600)
commit96b7f67177743e6e968bb5d55407a2d8e6115c1e
treebed6aab44cec2fe41bff0beecf66696db8af7821
parentf7d7ed1fe35c69f2fe2765e6d809bc0b7d1a41f4
nvmet-auth: fix return value check in auth send

nvmet_setup_auth() return type is int and currently it uses status
variable that is of type u16 in nvmet_execute_auth_send().

Catch the return value of nvmet_setup_auth() into int and set the
NVME_SC_INTERNAL as status variable before we jump to error.

Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Chaitanya Kulkarni <kch@nvidia.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/nvme/target/fabrics-cmd-auth.c