drm/amdgpu: fix list not initialized
authorChunming Zhou <david1.zhou@amd.com>
Wed, 18 Apr 2018 10:35:09 +0000 (18:35 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 15 May 2018 18:43:32 +0000 (13:43 -0500)
Otherwise, cpu stuck for 22s with kernel panic.

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

index 9c2195a..8c34060 100644 (file)
@@ -1568,10 +1568,9 @@ int amdgpu_vm_bo_update(struct amdgpu_device *adev,
                 * the evicted list so that it gets validated again on the
                 * next command submission.
                 */
+               list_del_init(&bo_va->base.vm_status);
                if (!(bo->preferred_domains & amdgpu_mem_type_to_domain(mem_type)))
                        list_add_tail(&bo_va->base.vm_status, &vm->evicted);
-               else
-                       list_del_init(&bo_va->base.vm_status);
        } else {
                list_del_init(&bo_va->base.vm_status);
        }