You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
tee: amdtee: fix an IS_ERR() vs NULL bug
[ Upstream commit9d7482771f] The __get_free_pages() function does not return error pointers it returns NULL so fix this condition to avoid a NULL dereference. Fixes:757cc3e9ff("tee: add AMD-TEE driver") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Rijo Thomas <Rijo-john.Thomas@amd.com> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
eed897a222
commit
640e28d618
@@ -203,9 +203,8 @@ static int copy_ta_binary(struct tee_context *ctx, void *ptr, void **ta,
|
||||
|
||||
*ta_size = roundup(fw->size, PAGE_SIZE);
|
||||
*ta = (void *)__get_free_pages(GFP_KERNEL, get_order(*ta_size));
|
||||
if (IS_ERR(*ta)) {
|
||||
pr_err("%s: get_free_pages failed 0x%llx\n", __func__,
|
||||
(u64)*ta);
|
||||
if (!*ta) {
|
||||
pr_err("%s: get_free_pages failed\n", __func__);
|
||||
rc = -ENOMEM;
|
||||
goto rel_fw;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user