winsys/amdgpu: remove assert

This was useful to validate native context fence code, but
now it has less value and triggers when drm-shim is used.

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40656>
This commit is contained in:
Pierre-Eric Pelloux-Prayer 2026-03-25 15:29:30 +01:00 committed by Marge Bot
parent d97688b6b3
commit 42d4ec080c

View file

@ -238,9 +238,6 @@ bool amdgpu_fence_wait(struct pipe_fence_handle *fence, uint64_t timeout,
abs_timeout, 0, NULL))
return false;
if (user_fence_cpu)
assert(*user_fence_cpu >= afence->seq_no);
afence->signalled = true;
return true;
}