freedreno: Fix FD_MESA_DEBUG=flush debug option

fd_batch_check_size() should be after fd_batch_unlock_submit(),
otherwise batch_flush() called from fd_batch_check_size()
would wait on mutex forever.

Fixes: 02298ed1 "freedreno: Add submit lock"

Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8205>
This commit is contained in:
Danylo Piliaiev 2020-12-22 21:23:36 +02:00 committed by Marge Bot
parent 00c30420cb
commit a6bdbd5c0f

View file

@ -334,8 +334,8 @@ fd_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info,
if (fd_mesa_debug & FD_DBG_DDRAW)
fd_context_all_dirty(ctx);
fd_batch_check_size(batch);
fd_batch_unlock_submit(batch);
fd_batch_check_size(batch);
fd_batch_reference(&batch, NULL);
if (info == &new_info)
@ -451,8 +451,8 @@ fd_clear(struct pipe_context *pctx, unsigned buffers,
}
}
fd_batch_check_size(batch);
fd_batch_unlock_submit(batch);
fd_batch_check_size(batch);
if (fallback) {
fd_blitter_clear(pctx, buffers, color, depth, stencil);