diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 11 | 
1 files changed, 5 insertions, 6 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c index bcfd4a8d0288..d1a229212e7a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c @@ -2022,13 +2022,12 @@ static void amdgpu_vm_prt_fini(struct amdgpu_device *adev, struct amdgpu_vm *vm)  	unsigned i, shared_count;  	int r; -	r = dma_resv_get_fences_rcu(resv, &excl, -					      &shared_count, &shared); +	r = dma_resv_get_fences(resv, &excl, &shared_count, &shared);  	if (r) {  		/* Not enough memory to grab the fence list, as last resort  		 * block for all the fences to complete.  		 */ -		dma_resv_wait_timeout_rcu(resv, true, false, +		dma_resv_wait_timeout(resv, true, false,  						    MAX_SCHEDULE_TIMEOUT);  		return;  	} @@ -2640,7 +2639,7 @@ bool amdgpu_vm_evictable(struct amdgpu_bo *bo)  		return true;  	/* Don't evict VM page tables while they are busy */ -	if (!dma_resv_test_signaled_rcu(bo->tbo.base.resv, true)) +	if (!dma_resv_test_signaled(bo->tbo.base.resv, true))  		return false;  	/* Try to block ongoing updates */ @@ -2820,8 +2819,8 @@ void amdgpu_vm_adjust_size(struct amdgpu_device *adev, uint32_t min_vm_size,   */  long amdgpu_vm_wait_idle(struct amdgpu_vm *vm, long timeout)  { -	timeout = dma_resv_wait_timeout_rcu(vm->root.base.bo->tbo.base.resv, -					    true, true, timeout); +	timeout = dma_resv_wait_timeout(vm->root.base.bo->tbo.base.resv, true, +					true, timeout);  	if (timeout <= 0)  		return timeout; | 
