Am 24.09.20 um 07:18 schrieb Dave Airlie:
From: Dave Airlie <airl...@redhat.com>

All drivers should have a move callback now so make it compulsory.

Signed-off-by: Dave Airlie <airl...@redhat.com>

Reviewed-by: Christian König <christian.koe...@amd.com>

---
  drivers/gpu/drm/ttm/ttm_bo.c | 13 +------------
  1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index 6d1520255fc1..6a7f4c028801 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -270,18 +270,7 @@ static int ttm_bo_handle_move_mem(struct ttm_buffer_object 
*bo,
        if (bdev->driver->move_notify)
                bdev->driver->move_notify(bo, evict, mem);
- if (old_man->use_tt && new_man->use_tt) {
-               if (bo->mem.mem_type == TTM_PL_SYSTEM) {
-                       ttm_bo_assign_mem(bo, mem);
-                       ret = 0;
-               } else
-                       ret = ttm_bo_move_ttm(bo, ctx, mem);
-       }
-       else if (bdev->driver->move)
-               ret = bdev->driver->move(bo, evict, ctx, mem);
-       else
-               ret = ttm_bo_move_memcpy(bo, ctx, mem);
-
+       ret = bdev->driver->move(bo, evict, ctx, mem);
        if (ret) {
                if (bdev->driver->move_notify) {
                        swap(*mem, bo->mem);

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to