mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu: pipeline evictions as well
This boosts Xonotic from 38fps to 47fps when artificially limiting VRAM to 256MB for testing. It should improve all CPU bound rendering situations where we have a lot of swapping to/from VRAM. Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
281d144ddd
commit
ce64bc25ef
|
@ -286,8 +286,10 @@ static int amdgpu_move_blit(struct ttm_buffer_object *bo,
|
||||||
r = amdgpu_copy_buffer(ring, old_start, new_start,
|
r = amdgpu_copy_buffer(ring, old_start, new_start,
|
||||||
new_mem->num_pages * PAGE_SIZE, /* bytes */
|
new_mem->num_pages * PAGE_SIZE, /* bytes */
|
||||||
bo->resv, &fence);
|
bo->resv, &fence);
|
||||||
/* FIXME: handle copy error */
|
if (r)
|
||||||
r = ttm_bo_move_accel_cleanup(bo, fence, evict, new_mem);
|
return r;
|
||||||
|
|
||||||
|
r = ttm_bo_pipeline_move(bo, fence, evict, new_mem);
|
||||||
fence_put(fence);
|
fence_put(fence);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue