mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "CK Hu (胡俊光)" <ck.hu@mediatek.com>
To: "Jason-JH Lin (林睿祥)" <Jason-JH.Lin@mediatek.com>,
	"chunkuang.hu@kernel.org" <chunkuang.hu@kernel.org>,
	"angelogioacchino.delregno@collabora.com"
	<angelogioacchino.delregno@collabora.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"Singo Chang (張興國)" <Singo.Chang@mediatek.com>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"Jason-ch Chen (陳建豪)" <Jason-ch.Chen@mediatek.com>,
	"Shawn Sung (宋孝謙)" <Shawn.Sung@mediatek.com>,
	"Nancy Lin (林欣螢)" <Nancy.Lin@mediatek.com>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	Project_Global_Chrome_Upstream_Group
	<Project_Global_Chrome_Upstream_Group@mediatek.com>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
	"Rex-BC Chen (陳柏辰)" <Rex-BC.Chen@mediatek.com>
Subject: Re: [PATCH 3/5] drm/mediatek: Add initialization for mtk_gem_obj
Date: Mon, 12 Jun 2023 08:27:16 +0000	[thread overview]
Message-ID: <f5cb370ffee4fd7f244dcca46f985fdf1367524a.camel@mediatek.com> (raw)
In-Reply-To: <20230407064657.12350-4-jason-jh.lin@mediatek.com>

Hi, Jason:

On Fri, 2023-04-07 at 14:46 +0800, Jason-JH.Lin wrote:
> Calling mtk_gem_obj = kzalloc() which returns uninitialized memory,
> because mtk_gem_obj is uninitialized.
> 
> It may cause using uninitialized value mtk_gem_obj->base.resv
> when calling drm_gem_object_init().
> 
> So add initialization for mtk_gem_obj.

So weird, nacked by me.

Regards,
CK

> 
> Signed-off-by: Jason-JH.Lin <jason-jh.lin@mediatek.com>
> Fixes: 119f5173628a ("drm/mediatek: Add DRM Driver for Mediatek SoC
> MT8173.")
> ---
>  drivers/gpu/drm/mediatek/mtk_drm_gem.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/mediatek/mtk_drm_gem.c
> b/drivers/gpu/drm/mediatek/mtk_drm_gem.c
> index a25b28d3ee90..9b8f72ed12e4 100644
> --- a/drivers/gpu/drm/mediatek/mtk_drm_gem.c
> +++ b/drivers/gpu/drm/mediatek/mtk_drm_gem.c
> @@ -33,7 +33,7 @@ static const struct drm_gem_object_funcs
> mtk_drm_gem_object_funcs = {
>  static struct mtk_drm_gem_obj *mtk_drm_gem_init(struct drm_device
> *dev,
>  						unsigned long size)
>  {
> -	struct mtk_drm_gem_obj *mtk_gem_obj;
> +	struct mtk_drm_gem_obj *mtk_gem_obj = NULL;
>  	int ret;
>  
>  	size = round_up(size, PAGE_SIZE);

  parent reply	other threads:[~2023-06-12  8:28 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20230407064657.12350-1-jason-jh.lin@mediatek.com>
     [not found] ` <20230407064657.12350-2-jason-jh.lin@mediatek.com>
2023-06-12  8:06   ` [PATCH 1/5] drm/mediatek: Remove freeing not dynamic allocated memory CK Hu (胡俊光)
2023-06-13  7:06     ` Jason-JH Lin (林睿祥)
     [not found] ` <20230407064657.12350-3-jason-jh.lin@mediatek.com>
2023-06-12  8:21   ` [PATCH 2/5] drm/mediatek: Add cnt checking for coverity issue CK Hu (胡俊光)
2023-06-13  7:07     ` Jason-JH Lin (林睿祥)
     [not found] ` <20230407064657.12350-4-jason-jh.lin@mediatek.com>
2023-06-12  8:27   ` CK Hu (胡俊光) [this message]
2023-06-13  7:20     ` [PATCH 3/5] drm/mediatek: Add initialization for mtk_gem_obj Jason-JH Lin (林睿祥)
     [not found] ` <20230407064657.12350-5-jason-jh.lin@mediatek.com>
2023-06-12  9:05   ` [PATCH 4/5] drm/mediatek: Add casting before assign CK Hu (胡俊光)
2023-06-13  8:26     ` Jason-JH Lin (林睿祥)
     [not found] ` <20230407064657.12350-6-jason-jh.lin@mediatek.com>
2023-06-12  9:10   ` [PATCH 5/5] drm/mediatek: Fix dereference before null check CK Hu (胡俊光)
2023-06-13  9:05     ` Jason-JH Lin (林睿祥)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f5cb370ffee4fd7f244dcca46f985fdf1367524a.camel@mediatek.com \
    --to=ck.hu@mediatek.com \
    --cc=Jason-JH.Lin@mediatek.com \
    --cc=Jason-ch.Chen@mediatek.com \
    --cc=Nancy.Lin@mediatek.com \
    --cc=Project_Global_Chrome_Upstream_Group@mediatek.com \
    --cc=Rex-BC.Chen@mediatek.com \
    --cc=Shawn.Sung@mediatek.com \
    --cc=Singo.Chang@mediatek.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=chunkuang.hu@kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®