Commit a315f232 authored by Christian König's avatar Christian König Committed by Alex Deucher

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: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarJunwei Zhang <Jerry.Zhang@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent f29135ee
...@@ -1082,7 +1082,7 @@ int amdgpu_vm_update_directories(struct amdgpu_device *adev, ...@@ -1082,7 +1082,7 @@ int amdgpu_vm_update_directories(struct amdgpu_device *adev,
struct amdgpu_vm_bo_base, struct amdgpu_vm_bo_base,
vm_status); vm_status);
bo_base->moved = false; bo_base->moved = false;
list_move(&bo_base->vm_status, &vm->idle); list_del_init(&bo_base->vm_status);
bo = bo_base->bo->parent; bo = bo_base->bo->parent;
if (!bo) if (!bo)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment