From: Pierre-Eric Pelloux-Prayer Date: Tue, 7 Jan 2020 14:57:10 +0000 (+0100) Subject: radeonsi: check ctx->sdma_cs before using it X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5f8daae4d829c9f734d2f41058990809d2dba349;p=mesa.git radeonsi: check ctx->sdma_cs before using it e5167a9276de1f383888714b41d3a9be2b9c1da9 disabled SDMA for gfx8. This caused 3 piglit arb_sparse_buffer tests (basic, buffer-data and commit) to crash on GFX8. Reported-by: Michel Dänzer Reviewed-by: Marek Olšák Fixes: e5167a9276d ("radeonsi: disable SDMA on gfx8 to fix corruption on RX 580") --- diff --git a/src/gallium/drivers/radeonsi/si_buffer.c b/src/gallium/drivers/radeonsi/si_buffer.c index 1de431cc937..38d8e9456c2 100644 --- a/src/gallium/drivers/radeonsi/si_buffer.c +++ b/src/gallium/drivers/radeonsi/si_buffer.c @@ -797,7 +797,8 @@ static bool si_resource_commit(struct pipe_context *pctx, si_flush_dma_cs(ctx, PIPE_FLUSH_ASYNC, NULL); } - ctx->ws->cs_sync_flush(ctx->sdma_cs); + if (ctx->sdma_cs) + ctx->ws->cs_sync_flush(ctx->sdma_cs); ctx->ws->cs_sync_flush(ctx->gfx_cs); assert(resource->target == PIPE_BUFFER);