diff options
| author | Roger He <[email protected]> | 2018-02-06 03:22:57 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2018-02-27 04:09:34 +0000 |
| commit | d330fca11500bebaf7f25b60b7b087bbe8ad0b7f (patch) | |
| tree | 491ebd8944d82c63881b9c3c98564d3d818e80bc /drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | |
| parent | radeon: hide pointless #warning when compile testing (diff) | |
| download | kernel-d330fca11500bebaf7f25b60b7b087bbe8ad0b7f.tar.gz kernel-d330fca11500bebaf7f25b60b7b087bbe8ad0b7f.zip | |
drm/ttm: use bit flag to replace allow_reserved_eviction in ttm_operation_ctx
for saving memory and more bit flag can be used in future
Signed-off-by: Roger He <[email protected]>
Reviewed-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_object.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c index 969de54b62da..c2a4b7215c46 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c @@ -341,8 +341,8 @@ static int amdgpu_bo_do_create(struct amdgpu_device *adev, struct ttm_operation_ctx ctx = { .interruptible = !kernel, .no_wait_gpu = false, - .allow_reserved_eviction = true, - .resv = resv + .resv = resv, + .flags = TTM_OPT_FLAG_ALLOW_RES_EVICT }; struct amdgpu_bo *bo; enum ttm_bo_type type; |
