From 75435d5e2a27466eef6452fda44098405a9aa202 Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Fri, 17 Apr 2020 12:25:22 -0700 Subject: [PATCH] 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 Part-of: --- src/freedreno/drm/freedreno_ringbuffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/freedreno/drm/freedreno_ringbuffer.c b/src/freedreno/drm/freedreno_ringbuffer.c index 671cbb1..d63419a 100644 --- a/src/freedreno/drm/freedreno_ringbuffer.c +++ b/src/freedreno/drm/freedreno_ringbuffer.c @@ -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; } -- 2.7.4