diff options
author | Christian König <christian.koenig@amd.com> | 2018-06-19 04:45:03 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-07-05 17:38:25 -0400 |
commit | a315f232f44e685397639649fe559325424d32d4 (patch) | |
tree | c61c7c338cba8b07936dce4ce7589fb6287f082d /drivers | |
parent | f29135ee4e0d4e01911ed569f731bfdb841cea6d (diff) |
drm/amdgpu: band aid validating VM PTs
Always validating the VM PTs takes to much time. Only always validate
the per VM BOs for now.
Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Junwei Zhang <Jerry.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c index 422d1a434db4..590db78b8c72 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c | |||
@@ -1082,7 +1082,7 @@ restart: | |||
1082 | struct amdgpu_vm_bo_base, | 1082 | struct amdgpu_vm_bo_base, |
1083 | vm_status); | 1083 | vm_status); |
1084 | bo_base->moved = false; | 1084 | bo_base->moved = false; |
1085 | list_move(&bo_base->vm_status, &vm->idle); | 1085 | list_del_init(&bo_base->vm_status); |
1086 | 1086 | ||
1087 | bo = bo_base->bo->parent; | 1087 | bo = bo_base->bo->parent; |
1088 | if (!bo) | 1088 | if (!bo) |