提交 bb475839 编写于 作者: J Junwei Zhang 提交者: Alex Deucher

drm/amdgpu: simplify bo_va list when vm bo update (v2)

v2: fix compiling warning
Signed-off-by: NJunwei Zhang <Jerry.Zhang@amd.com>
Reviewed-by: NChristian König <christian.koenig@amd.com>
Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
上级 bfa8eea2
...@@ -1509,6 +1509,7 @@ int amdgpu_vm_bo_update(struct amdgpu_device *adev, ...@@ -1509,6 +1509,7 @@ int amdgpu_vm_bo_update(struct amdgpu_device *adev,
struct drm_mm_node *nodes; struct drm_mm_node *nodes;
struct dma_fence *exclusive, **last_update; struct dma_fence *exclusive, **last_update;
uint64_t flags; uint64_t flags;
uint32_t mem_type;
int r; int r;
if (clear || !bo_va->base.bo) { if (clear || !bo_va->base.bo) {
...@@ -1561,19 +1562,16 @@ int amdgpu_vm_bo_update(struct amdgpu_device *adev, ...@@ -1561,19 +1562,16 @@ int amdgpu_vm_bo_update(struct amdgpu_device *adev,
} }
spin_lock(&vm->status_lock); spin_lock(&vm->status_lock);
if (bo && bo->tbo.resv == vm->root.base.bo->tbo.resv) { list_del_init(&bo_va->base.vm_status);
unsigned mem_type = bo->tbo.mem.mem_type;
/* If the BO is not in its preferred location add it back to /* If the BO is not in its preferred location add it back to
* the evicted list so that it gets validated again on the * the evicted list so that it gets validated again on the
* next command submission. * next command submission.
*/ */
list_del_init(&bo_va->base.vm_status); mem_type = bo->tbo.mem.mem_type;
if (!(bo->preferred_domains & amdgpu_mem_type_to_domain(mem_type))) if (bo && bo->tbo.resv == vm->root.base.bo->tbo.resv &&
!(bo->preferred_domains & amdgpu_mem_type_to_domain(mem_type)))
list_add_tail(&bo_va->base.vm_status, &vm->evicted); list_add_tail(&bo_va->base.vm_status, &vm->evicted);
} else {
list_del_init(&bo_va->base.vm_status);
}
spin_unlock(&vm->status_lock); spin_unlock(&vm->status_lock);
list_splice_init(&bo_va->invalids, &bo_va->valids); list_splice_init(&bo_va->invalids, &bo_va->valids);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册