diff options
author | Christian König <[email protected]> | 2017-10-25 21:37:35 +0200 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2017-12-04 16:33:16 -0500 |
commit | 2a018f28a8996114515c29d8db4d8ec392306e43 (patch) | |
tree | 35db15bdbe8d3cdbce88a454976b3fc5300e45d4 | |
parent | f5318959b51274a5feea129ce472fe66cecc5241 (diff) |
drm/amdgpu: don't wait interruptible while binding GART space
Display can't seem to handle this correctly.
Signed-off-by: Christian König <[email protected]>
Acked-by: Alex Deucher <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c index bdefc7b9fcff..470b911200ae 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c @@ -912,7 +912,7 @@ int amdgpu_ttm_bind(struct ttm_buffer_object *bo, struct ttm_mem_reg *bo_mem) placements.flags = (bo->mem.placement & ~TTM_PL_MASK_MEM) | TTM_PL_FLAG_TT; - r = ttm_bo_mem_space(bo, &placement, &tmp, true, false); + r = ttm_bo_mem_space(bo, &placement, &tmp, false, false); if (unlikely(r)) return r; |