[PATCH 39/45] drm/radeon/ttm: use new helper to create tmp tt
Dave Airlie
airlied at gmail.com
Thu Sep 24 05:18:39 UTC 2020
From: Dave Airlie <airlied at redhat.com>
Signed-off-by: Dave Airlie <airlied at redhat.com>
---
drivers/gpu/drm/radeon/radeon_ttm.c | 28 ++--------------------------
1 file changed, 2 insertions(+), 26 deletions(-)
diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c b/drivers/gpu/drm/radeon/radeon_ttm.c
index b38bc688f665..b004857f536b 100644
--- a/drivers/gpu/drm/radeon/radeon_ttm.c
+++ b/drivers/gpu/drm/radeon/radeon_ttm.c
@@ -214,21 +214,9 @@ static int radeon_move_vram_ram(struct ttm_buffer_object *bo,
{
struct ttm_resource *old_mem = &bo->mem;
struct ttm_resource tmp_mem;
- struct ttm_place placements;
- struct ttm_placement placement;
int r;
- tmp_mem = *new_mem;
- tmp_mem.mm_node = NULL;
- placement.num_placement = 1;
- placement.placement = &placements;
- placement.num_busy_placement = 1;
- placement.busy_placement = &placements;
- placements.fpfn = 0;
- placements.lpfn = 0;
- placements.mem_type = TTM_PL_TT;
- placements.flags = TTM_PL_MASK_CACHING;
- r = ttm_bo_mem_space(bo, &placement, &tmp_mem, ctx);
+ r = ttm_bo_create_tt_tmp(bo, ctx, new_mem, &tmp_mem);
if (unlikely(r)) {
return r;
}
@@ -275,21 +263,9 @@ static int radeon_move_ram_vram(struct ttm_buffer_object *bo,
{
struct ttm_resource *old_mem = &bo->mem;
struct ttm_resource tmp_mem;
- struct ttm_placement placement;
- struct ttm_place placements;
int r;
- tmp_mem = *new_mem;
- tmp_mem.mm_node = NULL;
- placement.num_placement = 1;
- placement.placement = &placements;
- placement.num_busy_placement = 1;
- placement.busy_placement = &placements;
- placements.fpfn = 0;
- placements.lpfn = 0;
- placements.mem_type = TTM_PL_TT;
- placements.flags = TTM_PL_MASK_CACHING;
- r = ttm_bo_mem_space(bo, &placement, &tmp_mem, ctx);
+ r = ttm_bo_create_tt_tmp(bo, ctx, new_mem, &tmp_mem);
if (unlikely(r)) {
return r;
}
--
2.27.0
More information about the dri-devel
mailing list