From: Rob Clark Date: Fri, 17 Apr 2020 19:25:22 +0000 (-0700) Subject: freedreno/drm: drop atomic refcnts X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=75435d5e2a27466eef6452fda44098405a9aa202;p=mesa.git 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: --- diff --git a/src/freedreno/drm/freedreno_ringbuffer.c b/src/freedreno/drm/freedreno_ringbuffer.c index 671cbb11f68..d63419a7453 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; }