]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm/amdgpu: fix moved list handling in the VM
authorChristian König <christian.koenig@amd.com>
Fri, 1 Sep 2017 12:46:19 +0000 (14:46 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 1 Sep 2017 16:50:35 +0000 (12:50 -0400)
Only move BOs to the moved/relocated list when they aren't already on a list.

This prevents accidential removal from the evicted list.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c

index b83e0fa1f269ff2eba40aec5bc0686b486bca943..c9223a5184dee69c9c7d85b043769c2bd741dd88 100644 (file)
@@ -1178,7 +1178,8 @@ static void amdgpu_vm_invalidate_level(struct amdgpu_vm *vm,
 
                entry->addr = ~0ULL;
                spin_lock(&vm->status_lock);
-               list_move(&entry->base.vm_status, &vm->relocated);
+               if (list_empty(&entry->base.vm_status))
+                       list_add(&entry->base.vm_status, &vm->relocated);
                spin_unlock(&vm->status_lock);
                amdgpu_vm_invalidate_level(vm, entry);
        }
@@ -2091,7 +2092,8 @@ static void amdgpu_vm_bo_insert_map(struct amdgpu_device *adev,
 
        if (bo && bo->tbo.resv == vm->root.base.bo->tbo.resv) {
                spin_lock(&vm->status_lock);
-               list_move(&bo_va->base.vm_status, &vm->moved);
+               if (list_empty(&bo_va->base.vm_status))
+                       list_add(&bo_va->base.vm_status, &vm->moved);
                spin_unlock(&vm->status_lock);
        }
        trace_amdgpu_vm_bo_map(bo_va, mapping);
@@ -2446,7 +2448,8 @@ void amdgpu_vm_bo_invalidate(struct amdgpu_device *adev,
                }
 
                spin_lock(&bo_base->vm->status_lock);
-               list_move(&bo_base->vm_status, &bo_base->vm->moved);
+               if (list_empty(&bo_base->vm_status))
+                       list_add(&bo_base->vm_status, &vm->moved);
                spin_unlock(&bo_base->vm->status_lock);
        }
 }