diff options
author | Christian König <christian.koenig@amd.com> | 2021-11-26 19:11:21 +0300 |
---|---|---|
committer | Christian König <christian.koenig@amd.com> | 2021-11-30 17:59:33 +0300 |
commit | f8be2c5971f48dacbd0e6daa44184dbb6f283dc4 (patch) | |
tree | b255f7d657507f2192b01ce2b35f92b7a8165049 /drivers | |
parent | f7fd7814f34c97a6c3388b25db18643309cff43c (diff) | |
download | linux-f8be2c5971f48dacbd0e6daa44184dbb6f283dc4.tar.xz |
drm/ttm: stop pruning fences after wait
This is just abusing internals of the dma_resv object.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20211129120659.1815-3-christian.koenig@amd.com
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_bo.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c index e4a20a3a5d16..fc124457ba2f 100644 --- a/drivers/gpu/drm/ttm/ttm_bo.c +++ b/drivers/gpu/drm/ttm/ttm_bo.c @@ -1086,7 +1086,6 @@ int ttm_bo_wait(struct ttm_buffer_object *bo, if (timeout == 0) return -EBUSY; - dma_resv_add_excl_fence(bo->base.resv, NULL); return 0; } EXPORT_SYMBOL(ttm_bo_wait); |