From: Nathan Chancellor <nathan@kernel.org>
To: Philippe CORNU <philippe.cornu@foss.st.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>,
Yannick Fertre <yannick.fertre@foss.st.com>,
Benjamin Gaignard <benjamin.gaignard@linaro.org>,
dri-devel@lists.freedesktop.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, llvm@lists.linux.dev
Subject: Re: [PATCH] drm/stm: Avoid using val uninitialized in ltdc_set_ycbcr_config()
Date: Tue, 22 Feb 2022 08:23:27 -0700 [thread overview]
Message-ID: <YhT/73ZM7IytO3+Q@dev-arch.archlinux-ax161> (raw)
In-Reply-To: <430ee06d-04e7-3b8b-bf11-48a7b62eaf18@foss.st.com>
On Tue, Feb 22, 2022 at 11:54:04AM +0100, Philippe CORNU wrote:
>
>
> On 2/7/22 8:44 PM, Nick Desaulniers wrote:
> > On Mon, Feb 7, 2022 at 8:53 AM Nathan Chancellor <nathan@kernel.org> wrote:
> > >
> > > Clang warns:
> > >
> > > drivers/gpu/drm/stm/ltdc.c:625:2: warning: variable 'val' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
> > > default:
> > > ^~~~~~~
> > > drivers/gpu/drm/stm/ltdc.c:635:2: note: uninitialized use occurs here
> > > val |= LxPCR_YCEN;
> > > ^~~
> > > drivers/gpu/drm/stm/ltdc.c:600:9: note: initialize the variable 'val' to silence this warning
> > > u32 val;
> > > ^
> > > = 0
> > > 1 warning generated.
> > >
> > > Use a return instead of break in the default case to fix the warning.
> > > Add an error message so that this return is not silent, which could hide
> > > issues in the future.
> > >
> > > Fixes: 484e72d3146b ("drm/stm: ltdc: add support of ycbcr pixel formats")
> > > Link: https://github.com/ClangBuiltLinux/linux/issues/1575
> > > Signed-off-by: Nathan Chancellor <nathan@kernel.org>
> > > ---
> > > drivers/gpu/drm/stm/ltdc.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/stm/ltdc.c b/drivers/gpu/drm/stm/ltdc.c
> > > index 5eeb32c9c9ce..447ddde1786c 100644
> > > --- a/drivers/gpu/drm/stm/ltdc.c
> > > +++ b/drivers/gpu/drm/stm/ltdc.c
> > > @@ -624,7 +624,8 @@ static inline void ltdc_set_ycbcr_config(struct drm_plane *plane, u32 drm_pix_fm
> > > break;
> > > default:
> > > /* RGB or not a YCbCr supported format */
> > > - break;
> > > + drm_err(plane->dev, "Unsupported pixel format: %u\n", drm_pix_fmt);
> >
> > This is fine, but in the future you should add an explicit
> > #include <drm/drm_print.h>
> > to avoid implicit header dependencies (like the ones that Mingo is
> > trying to detangle) for the declaration of drm_err. `drm_vprintf`
> > needs it, too.
> >
> > Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
> >
>
> Hi Nick,
> and thank you for having pointing this.
>
> Hi Nathan,
> May I ask you please to update your patch changing drm_err(plane->dev, )
> with DRM_ERROR().
Sure thing, v2 has been sent:
https://lore.kernel.org/r/20220222152045.484610-1-nathan@kernel.org/
I used drm_err() as I saw DRM_ERROR() was deprecated but I get internal
driver consistency is important.
Cheers,
Nathan
> Big thank you,
>
> Philippe :-)
>
>
>
> > > + return;
> > > }
> > >
> > > /* Enable limited range */
> > >
> > > base-commit: 542898c5aa5c6a3179dffb1d1606884a63f75fed
> > > --
> > > 2.35.1
> > >
> >
> >
WARNING: multiple messages have this Message-ID (diff)
From: Nathan Chancellor <nathan@kernel.org>
To: Philippe CORNU <philippe.cornu@foss.st.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>,
Yannick Fertre <yannick.fertre@foss.st.com>,
Benjamin Gaignard <benjamin.gaignard@linaro.org>,
dri-devel@lists.freedesktop.org,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, llvm@lists.linux.dev
Subject: Re: [PATCH] drm/stm: Avoid using val uninitialized in ltdc_set_ycbcr_config()
Date: Tue, 22 Feb 2022 08:23:27 -0700 [thread overview]
Message-ID: <YhT/73ZM7IytO3+Q@dev-arch.archlinux-ax161> (raw)
In-Reply-To: <430ee06d-04e7-3b8b-bf11-48a7b62eaf18@foss.st.com>
On Tue, Feb 22, 2022 at 11:54:04AM +0100, Philippe CORNU wrote:
>
>
> On 2/7/22 8:44 PM, Nick Desaulniers wrote:
> > On Mon, Feb 7, 2022 at 8:53 AM Nathan Chancellor <nathan@kernel.org> wrote:
> > >
> > > Clang warns:
> > >
> > > drivers/gpu/drm/stm/ltdc.c:625:2: warning: variable 'val' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
> > > default:
> > > ^~~~~~~
> > > drivers/gpu/drm/stm/ltdc.c:635:2: note: uninitialized use occurs here
> > > val |= LxPCR_YCEN;
> > > ^~~
> > > drivers/gpu/drm/stm/ltdc.c:600:9: note: initialize the variable 'val' to silence this warning
> > > u32 val;
> > > ^
> > > = 0
> > > 1 warning generated.
> > >
> > > Use a return instead of break in the default case to fix the warning.
> > > Add an error message so that this return is not silent, which could hide
> > > issues in the future.
> > >
> > > Fixes: 484e72d3146b ("drm/stm: ltdc: add support of ycbcr pixel formats")
> > > Link: https://github.com/ClangBuiltLinux/linux/issues/1575
> > > Signed-off-by: Nathan Chancellor <nathan@kernel.org>
> > > ---
> > > drivers/gpu/drm/stm/ltdc.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/stm/ltdc.c b/drivers/gpu/drm/stm/ltdc.c
> > > index 5eeb32c9c9ce..447ddde1786c 100644
> > > --- a/drivers/gpu/drm/stm/ltdc.c
> > > +++ b/drivers/gpu/drm/stm/ltdc.c
> > > @@ -624,7 +624,8 @@ static inline void ltdc_set_ycbcr_config(struct drm_plane *plane, u32 drm_pix_fm
> > > break;
> > > default:
> > > /* RGB or not a YCbCr supported format */
> > > - break;
> > > + drm_err(plane->dev, "Unsupported pixel format: %u\n", drm_pix_fmt);
> >
> > This is fine, but in the future you should add an explicit
> > #include <drm/drm_print.h>
> > to avoid implicit header dependencies (like the ones that Mingo is
> > trying to detangle) for the declaration of drm_err. `drm_vprintf`
> > needs it, too.
> >
> > Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
> >
>
> Hi Nick,
> and thank you for having pointing this.
>
> Hi Nathan,
> May I ask you please to update your patch changing drm_err(plane->dev, )
> with DRM_ERROR().
Sure thing, v2 has been sent:
https://lore.kernel.org/r/20220222152045.484610-1-nathan@kernel.org/
I used drm_err() as I saw DRM_ERROR() was deprecated but I get internal
driver consistency is important.
Cheers,
Nathan
> Big thank you,
>
> Philippe :-)
>
>
>
> > > + return;
> > > }
> > >
> > > /* Enable limited range */
> > >
> > > base-commit: 542898c5aa5c6a3179dffb1d1606884a63f75fed
> > > --
> > > 2.35.1
> > >
> >
> >
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Nathan Chancellor <nathan@kernel.org>
To: Philippe CORNU <philippe.cornu@foss.st.com>
Cc: Yannick Fertre <yannick.fertre@foss.st.com>,
llvm@lists.linux.dev, Nick Desaulniers <ndesaulniers@google.com>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
Benjamin Gaignard <benjamin.gaignard@linaro.org>,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] drm/stm: Avoid using val uninitialized in ltdc_set_ycbcr_config()
Date: Tue, 22 Feb 2022 08:23:27 -0700 [thread overview]
Message-ID: <YhT/73ZM7IytO3+Q@dev-arch.archlinux-ax161> (raw)
In-Reply-To: <430ee06d-04e7-3b8b-bf11-48a7b62eaf18@foss.st.com>
On Tue, Feb 22, 2022 at 11:54:04AM +0100, Philippe CORNU wrote:
>
>
> On 2/7/22 8:44 PM, Nick Desaulniers wrote:
> > On Mon, Feb 7, 2022 at 8:53 AM Nathan Chancellor <nathan@kernel.org> wrote:
> > >
> > > Clang warns:
> > >
> > > drivers/gpu/drm/stm/ltdc.c:625:2: warning: variable 'val' is used uninitialized whenever switch default is taken [-Wsometimes-uninitialized]
> > > default:
> > > ^~~~~~~
> > > drivers/gpu/drm/stm/ltdc.c:635:2: note: uninitialized use occurs here
> > > val |= LxPCR_YCEN;
> > > ^~~
> > > drivers/gpu/drm/stm/ltdc.c:600:9: note: initialize the variable 'val' to silence this warning
> > > u32 val;
> > > ^
> > > = 0
> > > 1 warning generated.
> > >
> > > Use a return instead of break in the default case to fix the warning.
> > > Add an error message so that this return is not silent, which could hide
> > > issues in the future.
> > >
> > > Fixes: 484e72d3146b ("drm/stm: ltdc: add support of ycbcr pixel formats")
> > > Link: https://github.com/ClangBuiltLinux/linux/issues/1575
> > > Signed-off-by: Nathan Chancellor <nathan@kernel.org>
> > > ---
> > > drivers/gpu/drm/stm/ltdc.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/stm/ltdc.c b/drivers/gpu/drm/stm/ltdc.c
> > > index 5eeb32c9c9ce..447ddde1786c 100644
> > > --- a/drivers/gpu/drm/stm/ltdc.c
> > > +++ b/drivers/gpu/drm/stm/ltdc.c
> > > @@ -624,7 +624,8 @@ static inline void ltdc_set_ycbcr_config(struct drm_plane *plane, u32 drm_pix_fm
> > > break;
> > > default:
> > > /* RGB or not a YCbCr supported format */
> > > - break;
> > > + drm_err(plane->dev, "Unsupported pixel format: %u\n", drm_pix_fmt);
> >
> > This is fine, but in the future you should add an explicit
> > #include <drm/drm_print.h>
> > to avoid implicit header dependencies (like the ones that Mingo is
> > trying to detangle) for the declaration of drm_err. `drm_vprintf`
> > needs it, too.
> >
> > Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
> >
>
> Hi Nick,
> and thank you for having pointing this.
>
> Hi Nathan,
> May I ask you please to update your patch changing drm_err(plane->dev, )
> with DRM_ERROR().
Sure thing, v2 has been sent:
https://lore.kernel.org/r/20220222152045.484610-1-nathan@kernel.org/
I used drm_err() as I saw DRM_ERROR() was deprecated but I get internal
driver consistency is important.
Cheers,
Nathan
> Big thank you,
>
> Philippe :-)
>
>
>
> > > + return;
> > > }
> > >
> > > /* Enable limited range */
> > >
> > > base-commit: 542898c5aa5c6a3179dffb1d1606884a63f75fed
> > > --
> > > 2.35.1
> > >
> >
> >
next prev parent reply other threads:[~2022-02-22 15:23 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-07 16:53 [PATCH] drm/stm: Avoid using val uninitialized in ltdc_set_ycbcr_config() Nathan Chancellor
2022-02-07 16:53 ` Nathan Chancellor
2022-02-07 16:53 ` Nathan Chancellor
2022-02-07 19:44 ` Nick Desaulniers
2022-02-07 19:44 ` Nick Desaulniers
2022-02-07 19:44 ` Nick Desaulniers
2022-02-22 10:54 ` Philippe CORNU
2022-02-22 10:54 ` Philippe CORNU
2022-02-22 10:54 ` Philippe CORNU
2022-02-22 15:23 ` Nathan Chancellor [this message]
2022-02-22 15:23 ` Nathan Chancellor
2022-02-22 15:23 ` Nathan Chancellor
2022-02-08 8:52 ` Raphael Gallais-Pou
2022-02-08 8:52 ` Raphael Gallais-Pou
2022-02-08 8:52 ` Raphael Gallais-Pou
2022-02-08 15:44 ` yannick Fertre
2022-02-08 15:44 ` yannick Fertre
2022-02-08 15:44 ` yannick Fertre
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=YhT/73ZM7IytO3+Q@dev-arch.archlinux-ax161 \
--to=nathan@kernel.org \
--cc=benjamin.gaignard@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=llvm@lists.linux.dev \
--cc=ndesaulniers@google.com \
--cc=philippe.cornu@foss.st.com \
--cc=yannick.fertre@foss.st.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.