mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu: shorten amdgpu_job_free_resources
The fence and the sync object are not hardware resources. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Chunming Zhou <david1.zhou@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
b5f5acbc87
commit
a79a5bdcef
|
@ -89,21 +89,23 @@ static void amdgpu_job_free_resources(struct amdgpu_job *job)
|
|||
|
||||
for (i = 0; i < job->num_ibs; ++i)
|
||||
amdgpu_ib_free(job->adev, &job->ibs[i], f);
|
||||
fence_put(job->fence);
|
||||
|
||||
amdgpu_sync_free(&job->sync);
|
||||
}
|
||||
|
||||
void amdgpu_job_free_cb(struct amd_sched_job *s_job)
|
||||
{
|
||||
struct amdgpu_job *job = container_of(s_job, struct amdgpu_job, base);
|
||||
|
||||
fence_put(job->fence);
|
||||
amdgpu_sync_free(&job->sync);
|
||||
kfree(job);
|
||||
}
|
||||
|
||||
void amdgpu_job_free(struct amdgpu_job *job)
|
||||
{
|
||||
amdgpu_job_free_resources(job);
|
||||
|
||||
fence_put(job->fence);
|
||||
amdgpu_sync_free(&job->sync);
|
||||
kfree(job);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue