[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <747f9c93-7465-99aa-0b91-a05fd64c7d1f@amd.com>
Date: Wed, 8 Jan 2020 12:33:08 +0530
From: "Thomas, Rijo-john" <Rijo-john.Thomas@....com>
To: Colin King <colin.king@...onical.com>,
Jens Wiklander <jens.wiklander@...aro.org>,
Devaraj Rangasamy <Devaraj.Rangasamy@....com>,
Herbert Xu <herbert@...dor.apana.org.au>,
Gary R Hook <gary.hook@....com>, tee-dev@...ts.linaro.org,
"linux-crypto@...r.kernel.org" <linux-crypto@...r.kernel.org>
Cc: kernel-janitors@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH][next] tee: fix memory allocation failure checks on
drv_data and amdtee
+linux-crypto
On 07/01/20 8:06 pm, Colin King wrote:
> From: Colin Ian King <colin.king@...onical.com>
>
> Currently the memory allocation failure checks on drv_data and
> amdtee are using IS_ERR rather than checking for a null pointer.
> Fix these checks to use the conventional null pointer check.
>
> Addresses-Coverity: ("Dereference null return")
> Fixes: 757cc3e9ff1d ("tee: add AMD-TEE driver")
> Signed-off-by: Colin Ian King <colin.king@...onical.com>
Reviewed-by: Rijo Thomas <Rijo-john.Thomas@....com>
> ---
> drivers/tee/amdtee/core.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/tee/amdtee/core.c b/drivers/tee/amdtee/core.c
> index 9d0cee1c837f..5fda810c79dc 100644
> --- a/drivers/tee/amdtee/core.c
> +++ b/drivers/tee/amdtee/core.c
> @@ -444,11 +444,11 @@ static int __init amdtee_driver_init(void)
> goto err_fail;
>
> drv_data = kzalloc(sizeof(*drv_data), GFP_KERNEL);
> - if (IS_ERR(drv_data))
> + if (!drv_data)
> return -ENOMEM;
>
> amdtee = kzalloc(sizeof(*amdtee), GFP_KERNEL);
> - if (IS_ERR(amdtee)) {
> + if (!amdtee) {
> rc = -ENOMEM;
> goto err_kfree_drv_data;
> }
>
Powered by blists - more mailing lists