From: Christian König christian.koenig@amd.com
Not initializing the ip instance leads to sporadic fails in the tests.
Signed-off-by: Christian König christian.koenig@amd.com --- tests/amdgpu/basic_tests.c | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/tests/amdgpu/basic_tests.c b/tests/amdgpu/basic_tests.c index d2086ce..f778a7e 100644 --- a/tests/amdgpu/basic_tests.c +++ b/tests/amdgpu/basic_tests.c @@ -346,6 +346,7 @@ static void amdgpu_command_submission_gfx_separate_ibs(void)
fence_status.context = context_handle; fence_status.ip_type = AMDGPU_HW_IP_GFX; + fence_status.ip_instance = 0; fence_status.fence = ibs_request.seq_no;
r = amdgpu_cs_query_fence_status(&fence_status, @@ -427,6 +428,7 @@ static void amdgpu_command_submission_gfx_shared_ib(void)
fence_status.context = context_handle; fence_status.ip_type = AMDGPU_HW_IP_GFX; + fence_status.ip_instance = 0; fence_status.fence = ibs_request.seq_no;
r = amdgpu_cs_query_fence_status(&fence_status, @@ -541,6 +543,7 @@ static void amdgpu_semaphore_test(void)
fence_status.context = context_handle[0]; fence_status.ip_type = AMDGPU_HW_IP_GFX; + fence_status.ip_instance = 0; fence_status.fence = ibs_request[1].seq_no; r = amdgpu_cs_query_fence_status(&fence_status, 500000000, 0, &expired); @@ -581,6 +584,7 @@ static void amdgpu_semaphore_test(void)
fence_status.context = context_handle[1]; fence_status.ip_type = AMDGPU_HW_IP_GFX; + fence_status.ip_instance = 0; fence_status.fence = ibs_request[1].seq_no; r = amdgpu_cs_query_fence_status(&fence_status, 500000000, 0, &expired); @@ -653,6 +657,7 @@ static void amdgpu_command_submission_compute(void)
fence_status.context = context_handle; fence_status.ip_type = AMDGPU_HW_IP_COMPUTE; + fence_status.ip_instance = 0; fence_status.ring = instance; fence_status.fence = ibs_request.seq_no;
@@ -739,6 +744,7 @@ static void amdgpu_test_exec_cs_helper(amdgpu_context_handle context_handle, CU_ASSERT_EQUAL(r, 0);
fence_status.ip_type = ip_type; + fence_status.ip_instance = 0; fence_status.ring = ibs_request->ring; fence_status.context = context_handle; fence_status.fence = ibs_request->seq_no;
On 02.06.2016 20:40, Christian König wrote:
From: Christian König christian.koenig@amd.com
Not initializing the ip instance leads to sporadic fails in the tests.
Signed-off-by: Christian König christian.koenig@amd.com
Reviewed-by: Michel Dänzer michel.daenzer@amd.com
P.S. Please run
git config format.subjectprefix "PATCH libdrm"
in your libdrm tree.
dri-devel@lists.freedesktop.org