On 2017年11月13日 15:51, Christian König wrote:
Am 13.11.2017 um 03:53 schrieb Chunming Zhou:
Otherwise, they could be optimized by scheduled fence.

Change-Id: I6857eee20aebeaad793d9fe4e1b5222f1be7470e
Signed-off-by: Chunming Zhou <david1.z...@amd.com>

First of all patch is Reviewed-by: Christian König <christian.koe...@amd.com>.
Thanks.


Second do you remember why we did this? I have some brief memory in my head that a certain CTS test failed because we didn't completely synchronized between dependencies explicit added by a semaphore.
Yes, exactly, vulkan cts could fail for some semaphore case, which is to sync two job with different context but same process and same engine. Although two jobs are series in hw ring, their executions are in parallel, which could result in hang.


Then can we narrow this down into a unit test for libdrm? Probably not so easy to reproduce otherwise.
Also yes, this is occasional issue, it's not very easy to reproduce.

Regards,
David Zhou

Thanks,
Christian.

---
  drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
index 673fb9f4301e..4a2af571d35f 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
@@ -1078,7 +1078,7 @@ static int amdgpu_cs_process_fence_dep(struct amdgpu_cs_parser *p,
              amdgpu_ctx_put(ctx);
              return r;
          } else if (fence) {
-            r = amdgpu_sync_fence(p->adev, &p->job->sync,
+            r = amdgpu_sync_fence(p->adev, &p->job->dep_sync,
                            fence);
              dma_fence_put(fence);
              amdgpu_ctx_put(ctx);
@@ -1103,7 +1103,7 @@ static int amdgpu_syncobj_lookup_and_add_to_sync(struct amdgpu_cs_parser *p,
      if (r)
          return r;
  -    r = amdgpu_sync_fence(p->adev, &p->job->sync, fence);
+    r = amdgpu_sync_fence(p->adev, &p->job->dep_sync, fence);
      dma_fence_put(fence);
        return r;



_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to