[AMD Official Use Only - General]
-----Original Message-----
From: Mahfooz, Hamza <[email protected]>
Sent: Tuesday, June 6, 2023 8:30 PM
To: SHANMUGAM, SRINIVASAN <[email protected]>; Deucher, Alexander
<[email protected]>; Pillai, Aurabindo <[email protected]>;
Siqueira, Rodrigo <[email protected]>; Wang, Chao-kai (Stylon)
<[email protected]>; Lee, Alvin <[email protected]>; Lei, Jun
<[email protected]>
Cc: [email protected]
Subject: Re: [PATCH] drm/amd/display: Fix guarding of 'if
(dc->debug.visual_confirm)'
On 6/6/23 08:35, Srinivasan Shanmugam wrote:
> Presumably the author intended to guard both the for loops with
> condition 'dc->res_pool->pipe_count' & 'surface_count' under 'if
> (dc->debug.visual_confirm)' so that's what I'm changing the code to.
> Hopefully to do the right thing.
>
> Fixes the below compilation error:
>
> drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:3546:3: error: misleading
> indentation; statement is not part of the previous 'if'
> [-Werror,-Wmisleading-indentation]
> for (i = 0; i < surface_count; i++) {
> ^
> drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.c:3538:2: note: previous
> statement is here
> if (dc->debug.visual_confirm)
> ^
>
> 'Fixes: 25e1a6115fc2e ("drm/amd/display: Refactor fast update to use
> new HWSS build sequence")'
> Cc: Stylon Wang <[email protected]>
> Cc: Alvin Lee <[email protected]>
> Cc: Jun Lei <[email protected]>
> Cc: Rodrigo Siqueira <[email protected]>
> Cc: Aurabindo Pillai <[email protected]>
> Cc: Alex Deucher <[email protected]>
> Signed-off-by: Srinivasan Shanmugam <[email protected]>
NACK, only the for loop towards the top of patch should be contained within the
if statement. The rest of the lines should have their indentation fixed, see
commit d118b28aefcb ("drm/amd/display: Clean FPGA code in dc") for context.
Thanks a lot for your feedbacks, I had submitted v2:
https://patchwork.freedesktop.org/patch/541312/
> ---
> drivers/gpu/drm/amd/display/dc/core/dc.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c
> b/drivers/gpu/drm/amd/display/dc/core/dc.c
> index 5e18fc0c79d6..abab9ae5e07c 100644
> --- a/drivers/gpu/drm/amd/display/dc/core/dc.c
> +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
> @@ -3534,7 +3534,7 @@ static void commit_planes_for_stream_fast(struct dc *dc,
> }
> }
>
> - if (dc->debug.visual_confirm)
> + if (dc->debug.visual_confirm) {
> for (i = 0; i < dc->res_pool->pipe_count; i++) {
> struct pipe_ctx *pipe = &context->res_ctx.pipe_ctx[i];
>
> @@ -3560,6 +3560,8 @@ static void commit_planes_for_stream_fast(struct dc *dc,
> }
> }
> }
> + }
> +
> build_dmub_cmd_list(dc,
> srf_updates,
> surface_count,
--
Hamza