mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 16:29:33 +07:00
drm/amdgpu: remove adev and fence from amdgpu_sync_free
Just leftovers from the semaphores. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexander.deucer@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
cc325d1913
commit
8a8f0b48a0
@ -644,8 +644,7 @@ int amdgpu_sync_resv(struct amdgpu_device *adev,
|
|||||||
void *owner);
|
void *owner);
|
||||||
struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
|
struct fence *amdgpu_sync_get_fence(struct amdgpu_sync *sync);
|
||||||
int amdgpu_sync_wait(struct amdgpu_sync *sync);
|
int amdgpu_sync_wait(struct amdgpu_sync *sync);
|
||||||
void amdgpu_sync_free(struct amdgpu_device *adev, struct amdgpu_sync *sync,
|
void amdgpu_sync_free(struct amdgpu_sync *sync);
|
||||||
struct fence *fence);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GART structures, functions & helpers
|
* GART structures, functions & helpers
|
||||||
|
@ -93,7 +93,7 @@ int amdgpu_ib_get(struct amdgpu_ring *ring, struct amdgpu_vm *vm,
|
|||||||
*/
|
*/
|
||||||
void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib)
|
void amdgpu_ib_free(struct amdgpu_device *adev, struct amdgpu_ib *ib)
|
||||||
{
|
{
|
||||||
amdgpu_sync_free(adev, &ib->sync, &ib->fence->base);
|
amdgpu_sync_free(&ib->sync);
|
||||||
amdgpu_sa_bo_free(adev, &ib->sa_bo, &ib->fence->base);
|
amdgpu_sa_bo_free(adev, &ib->sa_bo, &ib->fence->base);
|
||||||
if (ib->fence)
|
if (ib->fence)
|
||||||
fence_put(&ib->fence->base);
|
fence_put(&ib->fence->base);
|
||||||
|
@ -240,15 +240,11 @@ int amdgpu_sync_wait(struct amdgpu_sync *sync)
|
|||||||
/**
|
/**
|
||||||
* amdgpu_sync_free - free the sync object
|
* amdgpu_sync_free - free the sync object
|
||||||
*
|
*
|
||||||
* @adev: amdgpu_device pointer
|
|
||||||
* @sync: sync object to use
|
* @sync: sync object to use
|
||||||
* @fence: fence to use for the free
|
|
||||||
*
|
*
|
||||||
* Free the sync object.
|
* Free the sync object.
|
||||||
*/
|
*/
|
||||||
void amdgpu_sync_free(struct amdgpu_device *adev,
|
void amdgpu_sync_free(struct amdgpu_sync *sync)
|
||||||
struct amdgpu_sync *sync,
|
|
||||||
struct fence *fence)
|
|
||||||
{
|
{
|
||||||
struct amdgpu_sync_entry *e;
|
struct amdgpu_sync_entry *e;
|
||||||
struct hlist_node *tmp;
|
struct hlist_node *tmp;
|
||||||
|
Loading…
Reference in New Issue
Block a user