block/keyslot-manager: use kvfree_sensitive()
Make blk_ksm_destroy() use the kvfree_sensitive() function (which was introduced in v5.8-rc1) instead of open-coding it. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
Родитель
bfe373f608
Коммит
3e20aa9630
|
@ -374,8 +374,7 @@ void blk_ksm_destroy(struct blk_keyslot_manager *ksm)
|
||||||
if (!ksm)
|
if (!ksm)
|
||||||
return;
|
return;
|
||||||
kvfree(ksm->slot_hashtable);
|
kvfree(ksm->slot_hashtable);
|
||||||
memzero_explicit(ksm->slots, sizeof(ksm->slots[0]) * ksm->num_slots);
|
kvfree_sensitive(ksm->slots, sizeof(ksm->slots[0]) * ksm->num_slots);
|
||||||
kvfree(ksm->slots);
|
|
||||||
memzero_explicit(ksm, sizeof(*ksm));
|
memzero_explicit(ksm, sizeof(*ksm));
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(blk_ksm_destroy);
|
EXPORT_SYMBOL_GPL(blk_ksm_destroy);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче