From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Rob Clark <robdclark@gmail.com>, David Airlie <airlied@linux.ie>,
Archit Taneja <architt@codeaurora.org>,
Daniel Vetter <daniel.vetter@ffwll.ch>,
Liviu Dudau <Liviu.Dudau@arm.com>,
Gustavo Padovan <gustavo.padovan@collabora.com>,
linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org,
freedreno@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] drm: msm: avoid false-positive -Wmaybe-uninitialized warning
Date: Mon, 04 Dec 2017 18:36:03 +0200 [thread overview]
Message-ID: <1595491.VEK6ezTaRq@avalon> (raw)
In-Reply-To: <20171204144436.272626-1-arnd@arndb.de>
Hi Arnd,
Thank you for the patch.
On Monday, 4 December 2017 16:44:23 EET Arnd Bergmann wrote:
> gcc-8 -fsanitize-coverage=trace-pc produces a false-positive warning:
>
> drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c: In function
> 'mdp5_plane_mode_set.isra.8':
> drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c:1053:3: error: 'crtc_x_r' may be
> used uninitialized in this function [-Werror=maybe-uninitialized]
>
> It's relatively clear from reading the source that this cannot happen,
> and older compilers get it right. This rearranges the code remove
> the two affected variables, which reliably avoids the problem.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
The patch looks good to me, so
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
However I think it would also be useful to file a bug report for gcc,
especially if older versions got this right.
> ---
> drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c | 9 ++-------
> 1 file changed, 2 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c
> b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c index
> be50445f9901..c50449882037 100644
> --- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c
> +++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_plane.c
> @@ -964,8 +964,6 @@ static int mdp5_plane_mode_set(struct drm_plane *plane,
> uint32_t src_x, src_y;
> uint32_t src_w, src_h;
> uint32_t src_img_w, src_img_h;
> - uint32_t src_x_r;
> - int crtc_x_r;
> int ret;
>
> nplanes = fb->format->num_planes;
> @@ -1010,9 +1008,6 @@ static int mdp5_plane_mode_set(struct drm_plane
> *plane, crtc_w /= 2;
> src_w /= 2;
> src_img_w /= 2;
> -
> - crtc_x_r = crtc_x + crtc_w;
> - src_x_r = src_x + src_w;
> }
>
> ret = calc_scalex_steps(plane, pix_format, src_w, crtc_w, step.x);
> @@ -1052,9 +1047,9 @@ static int mdp5_plane_mode_set(struct drm_plane
> *plane, if (right_hwpipe)
> mdp5_hwpipe_mode_set(mdp5_kms, right_hwpipe, fb, &step, &pe,
> config, hdecm, vdecm, hflip, vflip,
> - crtc_x_r, crtc_y, crtc_w, crtc_h,
> + crtc_x + crtc_w, crtc_y, crtc_w, crtc_h,
> src_img_w, src_img_h,
> - src_x_r, src_y, src_w, src_h);
> + src_x + src_w, src_y, src_w, src_h);
>
> plane->fb = fb;
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2017-12-04 16:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-04 14:44 [PATCH] drm: msm: avoid false-positive -Wmaybe-uninitialized warning Arnd Bergmann
2017-12-04 16:36 ` Laurent Pinchart [this message]
2017-12-04 16:58 ` Arnd Bergmann
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=1595491.VEK6ezTaRq@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=Liviu.Dudau@arm.com \
--cc=airlied@linux.ie \
--cc=architt@codeaurora.org \
--cc=arnd@arndb.de \
--cc=daniel.vetter@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=gustavo.padovan@collabora.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robdclark@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