Lines Matching refs:remote
82 struct xe_bo *remote = xe_bo_create_locked(xe, m->tile, NULL, in test_copy() local
88 if (IS_ERR(remote)) { in test_copy()
90 str, remote); in test_copy()
94 err = xe_bo_validate(remote, NULL, false); in test_copy()
101 err = xe_bo_vmap(remote); in test_copy()
108 xe_map_memset(xe, &remote->vmap, 0, 0xd0, xe_bo_size(remote)); in test_copy()
109 fence = xe_migrate_clear(m, remote, remote->ttm.resource, in test_copy()
113 retval = xe_map_rd(xe, &remote->vmap, 0, u64); in test_copy()
116 retval = xe_map_rd(xe, &remote->vmap, xe_bo_size(remote) - 8, u64); in test_copy()
123 xe_map_memset(xe, &remote->vmap, 0, 0xc0, xe_bo_size(remote)); in test_copy()
127 fence = xe_migrate_copy(m, remote, bo, remote->ttm.resource, in test_copy()
141 xe_map_memset(xe, &remote->vmap, 0, 0xd0, xe_bo_size(remote)); in test_copy()
144 fence = xe_migrate_copy(m, bo, remote, bo->ttm.resource, in test_copy()
145 remote->ttm.resource, false); in test_copy()
148 retval = xe_map_rd(xe, &remote->vmap, 0, u64); in test_copy()
151 retval = xe_map_rd(xe, &remote->vmap, xe_bo_size(bo) - 8, u64); in test_copy()
157 xe_bo_vunmap(remote); in test_copy()
159 xe_bo_unlock(remote); in test_copy()
160 xe_bo_put(remote); in test_copy()