From: Rob Clark Date: Thu, 2 Apr 2020 19:12:32 +0000 (-0700) Subject: freedreno: fix missing locking X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=37e052c8b0882904d80ab1721ccb1ebed727af9f;p=mesa.git freedreno: fix missing locking Fixes: d0b3ccb0607 ("freedreno: Fix detection of being in a blit for acc queries.") Signed-off-by: Rob Clark Part-of: --- diff --git a/src/gallium/drivers/freedreno/freedreno_query_acc.c b/src/gallium/drivers/freedreno/freedreno_query_acc.c index 46efe61aae9..5bc10bce635 100644 --- a/src/gallium/drivers/freedreno/freedreno_query_acc.c +++ b/src/gallium/drivers/freedreno/freedreno_query_acc.c @@ -87,7 +87,9 @@ fd_acc_query_resume(struct fd_acc_query *aq, struct fd_batch *batch) aq->batch = batch; p->resume(aq, aq->batch); + mtx_lock(&batch->ctx->screen->lock); fd_batch_resource_used(batch, fd_resource(aq->prsc), true); + mtx_unlock(&batch->ctx->screen->lock); } static void