Commit 8836e4b8 authored by Roger He's avatar Roger He Committed by Alex Deucher
Browse files

drm/ttm: add allow_reserved_eviction and resv into ttm_operation_ctx



allow_reserved_eviction: Allow eviction of reserved BOs
resv: Reservation object to allow reserved evictions with

Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarRoger He <Hongbo.He@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 196f7489
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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;
};