Commit 2b7e35fb authored by Christian König's avatar Christian König Committed by Alex Deucher

drm/ttm: cleanup some more resv->lock uses

Use the reservation wrapper for this.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarRoger He <Hongbo.He@amd.com>
Reviewed-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 827ed2b0
...@@ -165,7 +165,7 @@ void ttm_bo_add_to_lru(struct ttm_buffer_object *bo) ...@@ -165,7 +165,7 @@ void ttm_bo_add_to_lru(struct ttm_buffer_object *bo)
struct ttm_bo_device *bdev = bo->bdev; struct ttm_bo_device *bdev = bo->bdev;
struct ttm_mem_type_manager *man; struct ttm_mem_type_manager *man;
lockdep_assert_held(&bo->resv->lock.base); reservation_object_assert_held(bo->resv);
if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) { if (!(bo->mem.placement & TTM_PL_FLAG_NO_EVICT)) {
...@@ -216,7 +216,7 @@ EXPORT_SYMBOL(ttm_bo_del_sub_from_lru); ...@@ -216,7 +216,7 @@ EXPORT_SYMBOL(ttm_bo_del_sub_from_lru);
void ttm_bo_move_to_lru_tail(struct ttm_buffer_object *bo) void ttm_bo_move_to_lru_tail(struct ttm_buffer_object *bo)
{ {
lockdep_assert_held(&bo->resv->lock.base); reservation_object_assert_held(bo->resv);
ttm_bo_del_from_lru(bo); ttm_bo_del_from_lru(bo);
ttm_bo_add_to_lru(bo); ttm_bo_add_to_lru(bo);
...@@ -665,7 +665,7 @@ static int ttm_bo_evict(struct ttm_buffer_object *bo, ...@@ -665,7 +665,7 @@ static int ttm_bo_evict(struct ttm_buffer_object *bo,
struct ttm_placement placement; struct ttm_placement placement;
int ret = 0; int ret = 0;
lockdep_assert_held(&bo->resv->lock.base); reservation_object_assert_held(bo->resv);
evict_mem = bo->mem; evict_mem = bo->mem;
evict_mem.mm_node = NULL; evict_mem.mm_node = NULL;
...@@ -1022,7 +1022,7 @@ static int ttm_bo_move_buffer(struct ttm_buffer_object *bo, ...@@ -1022,7 +1022,7 @@ static int ttm_bo_move_buffer(struct ttm_buffer_object *bo,
int ret = 0; int ret = 0;
struct ttm_mem_reg mem; struct ttm_mem_reg mem;
lockdep_assert_held(&bo->resv->lock.base); reservation_object_assert_held(bo->resv);
mem.num_pages = bo->num_pages; mem.num_pages = bo->num_pages;
mem.size = mem.num_pages << PAGE_SHIFT; mem.size = mem.num_pages << PAGE_SHIFT;
...@@ -1092,7 +1092,7 @@ int ttm_bo_validate(struct ttm_buffer_object *bo, ...@@ -1092,7 +1092,7 @@ int ttm_bo_validate(struct ttm_buffer_object *bo,
int ret; int ret;
uint32_t new_flags; uint32_t new_flags;
lockdep_assert_held(&bo->resv->lock.base); reservation_object_assert_held(bo->resv);
/* /*
* Check whether we need to move buffer. * Check whether we need to move buffer.
*/ */
...@@ -1186,7 +1186,7 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev, ...@@ -1186,7 +1186,7 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev,
bo->sg = sg; bo->sg = sg;
if (resv) { if (resv) {
bo->resv = resv; bo->resv = resv;
lockdep_assert_held(&bo->resv->lock.base); reservation_object_assert_held(bo->resv);
} else { } else {
bo->resv = &bo->ttm_resv; bo->resv = &bo->ttm_resv;
} }
...@@ -1208,7 +1208,7 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev, ...@@ -1208,7 +1208,7 @@ int ttm_bo_init_reserved(struct ttm_bo_device *bdev,
* since otherwise lockdep will be angered in radeon. * since otherwise lockdep will be angered in radeon.
*/ */
if (!resv) { if (!resv) {
locked = ww_mutex_trylock(&bo->resv->lock); locked = reservation_object_trylock(bo->resv);
WARN_ON(!locked); WARN_ON(!locked);
} }
......
...@@ -485,7 +485,7 @@ static int ttm_buffer_object_transfer(struct ttm_buffer_object *bo, ...@@ -485,7 +485,7 @@ static int ttm_buffer_object_transfer(struct ttm_buffer_object *bo,
fbo->acc_size = 0; fbo->acc_size = 0;
fbo->resv = &fbo->ttm_resv; fbo->resv = &fbo->ttm_resv;
reservation_object_init(fbo->resv); reservation_object_init(fbo->resv);
ret = ww_mutex_trylock(&fbo->resv->lock); ret = reservation_object_trylock(fbo->resv);
WARN_ON(!ret); WARN_ON(!ret);
*new_obj = fbo; *new_obj = fbo;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment