diff options
author | Christian König <christian.koenig@amd.com> | 2022-05-09 13:25:19 +0200 |
---|---|---|
committer | Christian König <christian.koenig@amd.com> | 2022-12-06 13:02:20 +0100 |
commit | 42523924c99e1a033569e5ab42389ffdab15e093 (patch) | |
tree | 9d7e923a1213f9dea597ea6c22b29ff293c3c023 /drivers/gpu/drm/ttm/ttm_bo.c | |
parent | drm/ttm: merge ttm_bo_api.h and ttm_bo_driver.h v2 (diff) | |
download | linux-42523924c99e1a033569e5ab42389ffdab15e093.tar.xz linux-42523924c99e1a033569e5ab42389ffdab15e093.zip |
drm/ttm: use ttm_bo_wait_ctx instead of ttm_bo_wait
Make sure that we use the correct settings from the context.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20221125102137.1801-8-christian.koenig@amd.com
Diffstat (limited to 'drivers/gpu/drm/ttm/ttm_bo.c')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index f9d9fd2d865d..cd266a067773 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -439,7 +439,7 @@ static int ttm_bo_evict(struct ttm_buffer_object *bo, bdev->funcs->evict_flags(bo, &placement); if (!placement.num_placement && !placement.num_busy_placement) { - ret = ttm_bo_wait(bo, true, false); + ret = ttm_bo_wait_ctx(bo, ctx); if (ret) return ret; @@ -1190,7 +1190,7 @@ int ttm_bo_swapout(struct ttm_buffer_object *bo, struct ttm_operation_ctx *ctx, /* * Make sure BO is idle. */ - ret = ttm_bo_wait(bo, false, false); + ret = ttm_bo_wait_ctx(bo, ctx); if (unlikely(ret != 0)) goto out; |