summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
diff options
context:
space:
mode:
authorChunming Zhou <david1.zhou@amd.com>2015-07-28 17:31:04 +0800
committerAlex Deucher <alexander.deucher@amd.com>2015-08-17 16:50:42 -0400
commit51b9db27d07869cf565ba135e97e2ed5f858612e (patch)
tree2120e2873ceef6ab8d0ef0e79dffcc9b4337277b /drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
parent4afcb30383bef8bf972c6aae47995ef314e5f8a1 (diff)
drm/amdgpu: wait forever for wait emit
the job must be emitted by scheduler, otherwise scheduler is abnormal. Signed-off-by: Chunming Zhou <david1.zhou@amd.com> Reviewed-by: Christian K?nig <christian.koenig@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
index 58ce2655a8fd..95807b678b6a 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
@@ -302,8 +302,8 @@ struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
if (amdgpu_enable_scheduler) {
r = amd_sched_wait_emit(&cring->c_entity,
seq,
- true,
- AMDGPU_WAIT_IDLE_TIMEOUT_IN_MS);
+ false,
+ -1);
if (r)
return NULL;
}