diff options
author | Jerome Glisse <[email protected]> | 2013-01-28 14:48:46 -0500 |
---|---|---|
committer | Jerome Glisse <[email protected]> | 2013-01-28 14:51:40 -0500 |
commit | 72916698b056d0559263e84372bb45cd83a1c2c2 (patch) | |
tree | 923631099fde92a5b6ce5cd114de8435dd20d720 /src/gallium/drivers/r600/r600_pipe.h | |
parent | dbb2d192de33064ae6cdb799d71c5ac89a6ea8ff (diff) |
r600g: fix segfault with old kernel9.1-branchpoint
Old kernel do not have dma support, patch pushed were missing some
of the check needed to not use dma.
Signed-off-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 31dcd057265..0f51eb2501f 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -869,7 +869,7 @@ static INLINE unsigned r600_context_bo_reloc(struct r600_context *ctx, * look serialized from driver pov */ if (!ring->flushing) { - if (ring == &ctx->rings.gfx) { + if (ring == &ctx->rings.gfx && ctx->rings.dma.cs) { /* flush dma ring */ ctx->rings.dma.flush(ctx, RADEON_FLUSH_ASYNC); } else { |