aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
diff options
context:
space:
mode:
authorJammy Zhou <Jammy.Zhou@amd.com>2015-08-02 22:27:57 -0400
committerAlex Deucher <alexander.deucher@amd.com>2015-08-17 16:50:58 -0400
commit27f6642d066ecea7b535dd9b24e2f41e54f3dd85 (patch)
tree57d060da0894b11938ed30f2b368feaa30385e06 /drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
parent63ad8d5882fcd466861fdbe51fc3a119b894d9a3 (diff)
drm/amdgpu: add amd_sched_next_queued_seq function
This function is used to get the next queued sequence number Signed-off-by: Jammy Zhou <Jammy.Zhou@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
index e0eaa55bf636..6766ead31c4d 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
@@ -310,7 +310,7 @@ struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
310 310
311 spin_lock(&ctx->ring_lock); 311 spin_lock(&ctx->ring_lock);
312 if (amdgpu_enable_scheduler) 312 if (amdgpu_enable_scheduler)
313 queued_seq = atomic64_read(&cring->c_entity.last_queued_v_seq) + 1; 313 queued_seq = amd_sched_next_queued_seq(&cring->c_entity);
314 else 314 else
315 queued_seq = cring->sequence; 315 queued_seq = cring->sequence;
316 316