[PATCH] drm/amdgpu: fix dropped backing store handling in amdgpu_dma_buf_move_notify
Christian König
ckoenig.leichtzumerken at gmail.com
Fri Dec 10 08:39:27 UTC 2021
bo->tbo.resource can now be NULL.
Signed-off-by: Christian König <christian.koenig at amd.com>
Bug: https://gitlab.freedesktop.org/drm/amd/-/issues/1811
---
drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c
index ae6ab93c868b..7444484a12bf 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c
@@ -384,7 +384,7 @@ amdgpu_dma_buf_move_notify(struct dma_buf_attachment *attach)
struct amdgpu_vm_bo_base *bo_base;
int r;
- if (bo->tbo.resource->mem_type == TTM_PL_SYSTEM)
+ if (!bo->tbo.resource || bo->tbo.resource->mem_type == TTM_PL_SYSTEM)
return;
r = ttm_bo_validate(&bo->tbo, &placement, &ctx);
--
2.25.1
More information about the amd-gfx
mailing list