diff options
author | Christian König <ckoenig.leichtzumerken@gmail.com> | 2023-03-16 08:26:47 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2023-03-17 07:06:58 +0100 |
commit | c00133a9e87ea5324d0b883d801eb6656f26739b (patch) | |
tree | 3a73ad2ee456c34e7f4d5c5c68b88df83a582dee /drivers/gpu/drm/ttm | |
parent | Merge tag 'amd-drm-fixes-6.3-2023-03-15' of https://gitlab.freedesktop.org/ag... (diff) | |
download | linux-c00133a9e87ea5324d0b883d801eb6656f26739b.tar.xz linux-c00133a9e87ea5324d0b883d801eb6656f26739b.zip |
drm/ttm: drop extra ttm_bo_put in ttm_bo_cleanup_refs
That was accidentially left over when we switched to the delayed delete
worker.
Suggested-by: Matthew Auld <matthew.william.auld@gmail.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
Fixes: 9bff18d13473 ("drm/ttm: use per BO cleanup workers")
Reported-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Tested-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230316072647.406707-1-christian.koenig@amd.com
Diffstat (limited to 'drivers/gpu/drm/ttm')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index 326a3d13a829..c286c6ffe07f 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -295,8 +295,6 @@ static int ttm_bo_cleanup_refs(struct ttm_buffer_object *bo, if (unlock_resv) dma_resv_unlock(bo->base.resv); - ttm_bo_put(bo); - return 0; } |