]> Git Repo - linux.git/commitdiff
drm/ttm: add allow_reserved_eviction and resv into ttm_operation_ctx
authorRoger He <[email protected]>
Fri, 8 Dec 2017 03:36:46 +0000 (11:36 +0800)
committerAlex Deucher <[email protected]>
Fri, 15 Dec 2017 22:09:17 +0000 (17:09 -0500)
allow_reserved_eviction: Allow eviction of reserved BOs
resv: Reservation object to allow reserved evictions with

Reviewed-by: Christian König <[email protected]>
Signed-off-by: Roger He <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
include/drm/ttm/ttm_bo_api.h

index 368eb02b54a9ee1526270da28ae30d4c9607d884..c1263308145ac9762baa14a69695f121dd30002f 100644 (file)
@@ -263,6 +263,8 @@ struct ttm_bo_kmap_obj {
  *
  * @interruptible: Sleep interruptible if sleeping.
  * @no_wait_gpu: Return immediately if the GPU is busy.
+ * @allow_reserved_eviction: Allow eviction of reserved BOs.
+ * @resv: Reservation object to allow reserved evictions with.
  *
  * Context for TTM operations like changing buffer placement or general memory
  * allocation.
@@ -270,6 +272,8 @@ struct ttm_bo_kmap_obj {
 struct ttm_operation_ctx {
        bool interruptible;
        bool no_wait_gpu;
+       bool allow_reserved_eviction;
+       struct reservation_object *resv;
        uint64_t bytes_moved;
 };
 
This page took 0.062553 seconds and 4 git commands to generate.