Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4279cb14 authored by Christian König's avatar Christian König Committed by Alex Deucher
Browse files

drm/ttm: remove NULL checks when calling ttm_tt_destroy



The function is a no-op with a NULL pointer.

Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 089f16c5
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -147,7 +147,6 @@ static void ttm_bo_release_list(struct kref *list_kref)
	BUG_ON(!list_empty(&bo->lru));
	BUG_ON(!list_empty(&bo->ddestroy));

	if (bo->ttm)
	ttm_tt_destroy(bo->ttm);
	atomic_dec(&bo->glob->bo_count);
	if (bo->resv == &bo->ttm_resv)
@@ -396,7 +395,7 @@ static int ttm_bo_handle_move_mem(struct ttm_buffer_object *bo,

out_err:
	new_man = &bdev->man[bo->mem.mem_type];
	if ((new_man->flags & TTM_MEMTYPE_FLAG_FIXED) && bo->ttm) {
	if (new_man->flags & TTM_MEMTYPE_FLAG_FIXED) {
		ttm_tt_destroy(bo->ttm);
		bo->ttm = NULL;
	}
@@ -417,10 +416,8 @@ static void ttm_bo_cleanup_memtype_use(struct ttm_buffer_object *bo)
	if (bo->bdev->driver->move_notify)
		bo->bdev->driver->move_notify(bo, NULL);

	if (bo->ttm) {
	ttm_tt_destroy(bo->ttm);
	bo->ttm = NULL;
	}
	ttm_bo_mem_put(bo, &bo->mem);

	ww_mutex_unlock (&bo->resv->lock);
+2 −3
Original line number Diff line number Diff line
@@ -400,7 +400,7 @@ int ttm_bo_move_memcpy(struct ttm_buffer_object *bo,
	*old_mem = *new_mem;
	new_mem->mm_node = NULL;

	if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) && (ttm != NULL)) {
	if (man->flags & TTM_MEMTYPE_FLAG_FIXED) {
		ttm_tt_destroy(ttm);
		bo->ttm = NULL;
	}
@@ -647,8 +647,7 @@ int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo,
		if (ret)
			return ret;

		if ((man->flags & TTM_MEMTYPE_FLAG_FIXED) &&
		    (bo->ttm != NULL)) {
		if (man->flags & TTM_MEMTYPE_FLAG_FIXED) {
			ttm_tt_destroy(bo->ttm);
			bo->ttm = NULL;
		}
+1 −1
Original line number Diff line number Diff line
@@ -168,7 +168,7 @@ void ttm_tt_destroy(struct ttm_tt *ttm)
{
	int ret;

	if (unlikely(ttm == NULL))
	if (ttm == NULL)
		return;

	if (ttm->state == tt_bound) {