drm/amdgpu: fix amdgpu_job_free_resources v2
authorjsg <jsg@openbsd.org>
Wed, 25 Jan 2023 01:46:56 +0000 (01:46 +0000)
committerjsg <jsg@openbsd.org>
Wed, 25 Jan 2023 01:46:56 +0000 (01:46 +0000)
From Christian Koenig
af4a3c274a92ee0545d65b9102b398fb75d7cc9a in linux-6.1.y/6.1.8
74ea8e78ab349514c9f4df0be1189d91267d750d in mainline linux

sys/dev/pci/drm/amd/amdgpu/amdgpu_job.c

index adac650..3bf0e89 100644 (file)
@@ -154,8 +154,14 @@ void amdgpu_job_free_resources(struct amdgpu_job *job)
        struct dma_fence *f;
        unsigned i;
 
-       /* use sched fence if available */
-       f = job->base.s_fence ? &job->base.s_fence->finished :  &job->hw_fence;
+       /* Check if any fences where initialized */
+       if (job->base.s_fence && job->base.s_fence->finished.ops)
+               f = &job->base.s_fence->finished;
+       else if (job->hw_fence.ops)
+               f = &job->hw_fence;
+       else
+               f = NULL;
+
        for (i = 0; i < job->num_ibs; ++i)
                amdgpu_ib_free(ring->adev, &job->ibs[i], f);
 }