freedreno/drm: drop atomic refcnts

Since we dropped the async flush_queue, we no longer need the refcnts to
be atomic.

Signed-off-by: Rob Clark <robdclark@chromium.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4813>
This commit is contained in:
Rob Clark
2020-04-17 12:25:22 -07:00
committed by Marge Bot
parent 4715502975
commit 75435d5e2a
+2 -2
View File
@@ -69,7 +69,7 @@ fd_ringbuffer_new_object(struct fd_pipe *pipe, uint32_t size)
void fd_ringbuffer_del(struct fd_ringbuffer *ring)
{
if (!atomic_dec_and_test(&ring->refcnt))
if (--ring->refcnt > 0)
return;
ring->funcs->destroy(ring);
@@ -78,7 +78,7 @@ void fd_ringbuffer_del(struct fd_ringbuffer *ring)
struct fd_ringbuffer *
fd_ringbuffer_ref(struct fd_ringbuffer *ring)
{
p_atomic_inc(&ring->refcnt);
ring->refcnt++;
return ring;
}