AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian König" <christian.koenig@amd.com>
To: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>,
	Alex Deucher <alexander.deucher@amd.com>
Cc: amd-gfx@lists.freedesktop.org, Dan Carpenter <dan.carpenter@linaro.org>
Subject: Re: [PATCH] drm/amdgpu: Fix missing unwind in amdgpu_ib_schedule() error path
Date: Fri, 6 Feb 2026 16:32:48 +0100	[thread overview]
Message-ID: <1608dc23-cbea-48eb-9dd2-dc1bd9e5804f@amd.com> (raw)
In-Reply-To: <20260206142445.1476609-1-srinivasan.shanmugam@amd.com>

On 2/6/26 15:24, Srinivasan Shanmugam wrote:
> If amdgpu_vm_flush() fails, amdgpu_ib_schedule() returns early after
> calling amdgpu_ring_undo().  This skips the common free_fence cleanup
> path.  Other error paths were already changed to use goto free_fence,
> but this one was missed.

In general good catch, but amdgpu_vm_flush() never fails :)

I wanted to remove the return code after Alex has cleaned this up but haven't got the time for it yet.

Maybe you can give that a try. It originates in amdgpu_fence_emit().

Thanks,
Christian.

> 
> Change the early return to goto free_fence so all error paths clean up
> the same way.
> 
> Fixes the below:
> drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c:232 amdgpu_ib_schedule()
> warn: missing unwind goto?
> 
> drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
>     124 int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned int num_ibs,
>     125                        struct amdgpu_ib *ibs, struct amdgpu_job *job,
>     126                        struct dma_fence **f)
>     127 {
> 
>     ...
> 
>     224
>     225         if (ring->funcs->insert_start)
>     226                 ring->funcs->insert_start(ring);
>     227
>     228         if (job) {
>     229                 r = amdgpu_vm_flush(ring, job, need_pipe_sync);
>     230                 if (r) {
>     231                         amdgpu_ring_undo(ring);
> --> 232                         return r;
> 
> The patch changed the other error paths to goto free_fence but this one
> was accidentally skipped.
> 
>     233                 }
>     234         }
>     235
>     236         amdgpu_ring_ib_begin(ring);
> 
>     ...
> 
>     338
>     339 free_fence:
>     340         if (!job)
>     341                 kfree(af);
>     342         return r;
>     343 }
> 
> Fixes: f903b85ed0f1 ("drm/amdgpu: fix possible fence leaks from job structure")
> Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian König <christian.koenig@amd.com>
> Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@amd.com>
> ---
>  drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
> index 44f230d67da2..bfa64cd7a62d 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
> @@ -229,7 +229,7 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned int num_ibs,
>  		r = amdgpu_vm_flush(ring, job, need_pipe_sync);
>  		if (r) {
>  			amdgpu_ring_undo(ring);
> -			return r;
> +			goto free_fence;
>  		}
>  	}
>  


  parent reply	other threads:[~2026-02-06 15:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-06 14:24 [PATCH] drm/amdgpu: Fix missing unwind in amdgpu_ib_schedule() error path Srinivasan Shanmugam
2026-02-06 15:29 ` Alex Deucher
2026-02-06 15:32 ` Christian König [this message]
2026-02-08  6:31   ` SHANMUGAM, SRINIVASAN

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=1608dc23-cbea-48eb-9dd2-dc1bd9e5804f@amd.com \
    --to=christian.koenig@amd.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=dan.carpenter@linaro.org \
    --cc=srinivasan.shanmugam@amd.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