summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ttm
diff options
context:
space:
mode:
authorMonk Liu <monk.liu@amd.com>2017-08-11 13:50:51 +0800
committerAlex Deucher <alexander.deucher@amd.com>2017-08-29 15:27:45 -0400
commit7e96a13523af12645b7e18d7cc268a95b72ff026 (patch)
treea80b74416190421e37ef00c57645f483debbaf71 /drivers/gpu/drm/ttm
parentb249e18df151c9627af808321a8090c0b8d4d834 (diff)
downloadlinux-7e96a13523af12645b7e18d7cc268a95b72ff026.tar.bz2
drm/ttm: fix missing inc bo_count
Signed-off-by: Monk Liu <monk.liu@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/ttm')
-rw-r--r--drivers/gpu/drm/ttm/ttm_bo_util.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index d0459b392e5e..c934ad5b3903 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -469,6 +469,7 @@ static int ttm_buffer_object_transfer(struct ttm_buffer_object *bo,
* TODO: Explicit member copy would probably be better here.
*/
+ atomic_inc(&bo->glob->bo_count);
INIT_LIST_HEAD(&fbo->ddestroy);
INIT_LIST_HEAD(&fbo->lru);
INIT_LIST_HEAD(&fbo->swap);