diff options
| author | Dave Airlie <airlied@redhat.com> | 2021-06-10 11:03:50 +1000 | 
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2021-06-10 11:28:09 +1000 | 
| commit | 09b020bb05a514f560979438fa40406bc63d5353 (patch) | |
| tree | 2568980e133e47bce3509cab92f7adac99b51cc4 /drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | |
| parent | 5745d647d5563d3e9d32013ad4e5c629acff04d7 (diff) | |
| parent | 5b7a2c92b6102447a973f2f1ef19d660ec329881 (diff) | |
Merge tag 'drm-misc-next-2021-06-09' of git://anongit.freedesktop.org/drm/drm-misc into drm-next
drm-misc-next for 5.14:
UAPI Changes:
 * drm/panfrost: Export AFBC_FEATURES register to userspace
Cross-subsystem Changes:
 * dma-buf: Fix debug printing; Rename dma_resv_*() functions + changes
   in callers; Cleanups
Core Changes:
 * Add prefetching memcpy for WC
 * Avoid circular dependency on CONFIG_FB
 * Cleanups
 * Documentation fixes throughout DRM
 * ttm: Make struct ttm_resource the base of all managers + changes
   in all users of TTM; Add a generic memcpy for page-based iomem; Remove
   use of VM_MIXEDMAP; Cleanups
Driver Changes:
 * drm/bridge: Add TI SN65DSI83 and SN65DSI84 + DT bindings
 * drm/hyperv: Add DRM driver for HyperV graphics output
 * drm/msm: Fix module dependencies
 * drm/panel: KD53T133: Support rotation
 * drm/pl111: Fix module dependencies
 * drm/qxl: Fixes
 * drm/stm: Cleanups
 * drm/sun4i: Be explicit about format modifiers
 * drm/vc4: Use struct gpio_desc; Cleanups
 * drm/vgem: Cleanups
 * drm/vmwgfx: Use ttm_bo_move_null() if there's nothing to copy
 * fbdev/mach64: Cleanups
 * fbdev/mb862xx: Use DEVICE_ATTR_RO
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/YMBw3DF2b9udByfT@linux-uq9g
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c index 73c76a3e2b12..1c3e3b608332 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c @@ -226,7 +226,7 @@ static void amdgpu_gem_object_close(struct drm_gem_object *obj,  	if (!amdgpu_vm_ready(vm))  		goto out_unlock; -	fence = dma_resv_get_excl(bo->tbo.base.resv); +	fence = dma_resv_excl_fence(bo->tbo.base.resv);  	if (fence) {  		amdgpu_bo_fence(bo, fence, true);  		fence = NULL; @@ -526,8 +526,7 @@ int amdgpu_gem_wait_idle_ioctl(struct drm_device *dev, void *data,  		return -ENOENT;  	}  	robj = gem_to_amdgpu_bo(gobj); -	ret = dma_resv_wait_timeout_rcu(robj->tbo.base.resv, true, true, -						  timeout); +	ret = dma_resv_wait_timeout(robj->tbo.base.resv, true, true, timeout);  	/* ret == 0 means not signaled,  	 * ret > 0 means signaled | 
