aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu.h
diff options
context:
space:
mode:
authorChunming Zhou <david1.zhou@amd.com>2015-07-21 04:04:39 -0400
committerAlex Deucher <alexander.deucher@amd.com>2015-08-17 16:50:36 -0400
commit4274f5d45cf11f88d7380702a7147b70553ddd6e (patch)
tree4b53bd66cb742c206c9537691ee8337a134f7300 /drivers/gpu/drm/amd/amdgpu/amdgpu.h
parent4b559c90bc1870313f02cceef680884519af6b2b (diff)
drm/amdgpu: prepare job before push to sw queue for pte ring
user mode will still use pte ring as a normal ring. if the prepare job generates another command(update pte) on its ring in scheduler, then will kill scheduler which is going to waiting later job but pending running job. Signed-off-by: Chunming Zhou <david1.zhou@amd.com> Acked-by: Christian K?nig <christian.koenig@amd.com> Reviewed-by: Jammy Zhou <Jammy.Zhou@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu.h')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu.h b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
index 127867c2fc37..79e81f397e60 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu.h
@@ -902,6 +902,7 @@ struct amdgpu_ring {
902 struct amdgpu_ctx *current_ctx; 902 struct amdgpu_ctx *current_ctx;
903 enum amdgpu_ring_type type; 903 enum amdgpu_ring_type type;
904 char name[16]; 904 char name[16];
905 bool is_pte_ring;
905}; 906};
906 907
907/* 908/*