]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
drm/radeon: delete radeon_fence_process in is_signaled, no deadlock
authorRobert McClinton <rbmccav@gmail.com>
Sun, 16 Nov 2025 17:33:21 +0000 (12:33 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 18 Nov 2025 15:52:32 +0000 (10:52 -0500)
commit527ba26e50ec2ca2be9c7c82f3ad42998a75d0db
tree86496962f62cf2436d013f8aab9b80fbc19371c5
parent7203fa78db33b1a95b64d28828372311da715f1d
drm/radeon: delete radeon_fence_process in is_signaled, no deadlock

Delete the attempt to progress the queue when checking if fence is
signaled. This avoids deadlock.

dma-fence_ops::signaled can be called with the fence lock in unknown
state. For radeon, the fence lock is also the wait queue lock. This can
cause a self deadlock when signaled() tries to make forward progress on
the wait queue. But advancing the queue is unneeded because incorrectly
returning false from signaled() is perfectly acceptable.

Link: https://github.com/brave/brave-browser/issues/49182
Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/4641
Cc: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Robert McClinton <rbmccav@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_fence.c