mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
nvme-auth: use kvfree() for memory allocated with kvcalloc()
[ Upstream commit bb9f4cca7c031de6f0e85f7ba24abf0172829f85 ]
Memory allocated by kvcalloc() may come from vmalloc or kmalloc,
so use kvfree() instead of kfree() for proper deallocation.
Fixes: aa36d711e9 ("nvme-auth: convert dhchap_auth_list to an array")
Signed-off-by: Israel Rukshin <israelr@nvidia.com>
Reviewed-by: Max Gurtovoy <mgurtovoy@nvidia.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
27d20907de
commit
1e59c7587b
@@ -997,7 +997,7 @@ void nvme_auth_free(struct nvme_ctrl *ctrl)
|
||||
if (ctrl->dhchap_ctxs) {
|
||||
for (i = 0; i < ctrl_max_dhchaps(ctrl); i++)
|
||||
nvme_auth_free_dhchap(&ctrl->dhchap_ctxs[i]);
|
||||
kfree(ctrl->dhchap_ctxs);
|
||||
kvfree(ctrl->dhchap_ctxs);
|
||||
}
|
||||
if (ctrl->host_key) {
|
||||
nvme_auth_free_key(ctrl->host_key);
|
||||
|
||||
Reference in New Issue
Block a user