summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/bochs
diff options
context:
space:
mode:
authorChristian König2016-04-06 11:12:07 +0200
committerAlex Deucher2016-05-05 02:21:38 +0200
commit98c2872ae99bb7c9e8e4369cf48154f41dd6a109 (patch)
treefdbcd77633df61e070604aa07dcb002cefe0dfd8 /drivers/gpu/drm/bochs
parentdrm/ttm: add optional LRU removal callback v2 (diff)
downloadkernel-qcow2-linux-98c2872ae99bb7c9e8e4369cf48154f41dd6a109.tar.gz
kernel-qcow2-linux-98c2872ae99bb7c9e8e4369cf48154f41dd6a109.tar.xz
kernel-qcow2-linux-98c2872ae99bb7c9e8e4369cf48154f41dd6a109.zip
drm/ttm: implement LRU add callbacks v2
This allows fine grained control for the driver where to add a BO into the LRU. v2: fix typo in comment Reviewed-by: Sinclair Yeh <syeh@vmware.com> Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/bochs')
-rw-r--r--drivers/gpu/drm/bochs/bochs_mm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/bochs/bochs_mm.c b/drivers/gpu/drm/bochs/bochs_mm.c
index d812ad014da5..24a30f64ed2d 100644
--- a/drivers/gpu/drm/bochs/bochs_mm.c
+++ b/drivers/gpu/drm/bochs/bochs_mm.c
@@ -212,6 +212,8 @@ struct ttm_bo_driver bochs_bo_driver = {
.verify_access = bochs_bo_verify_access,
.io_mem_reserve = &bochs_ttm_io_mem_reserve,
.io_mem_free = &bochs_ttm_io_mem_free,
+ .lru_tail = &ttm_bo_default_lru_tail,
+ .swap_lru_tail = &ttm_bo_default_swap_lru_tail,
};
int bochs_mm_init(struct bochs_device *bochs)