Commit a48296ab authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau: swap loop order in move_notify() hook

The conditional is the same for every mapping.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 425b34f7
...@@ -1219,11 +1219,13 @@ nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, bool evict, ...@@ -1219,11 +1219,13 @@ nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, bool evict,
if (bo->destroy != nouveau_bo_del_ttm) if (bo->destroy != nouveau_bo_del_ttm)
return; return;
list_for_each_entry(vma, &nvbo->vma_list, head) { if (mem && new_reg->mem_type != TTM_PL_SYSTEM &&
if (mem && new_reg->mem_type != TTM_PL_SYSTEM && mem->page_shift == nvbo->page) {
mem->page_shift == nvbo->page) { list_for_each_entry(vma, &nvbo->vma_list, head) {
nvkm_vm_map(vma, mem); nvkm_vm_map(vma, mem);
} else { }
} else {
list_for_each_entry(vma, &nvbo->vma_list, head) {
WARN_ON(ttm_bo_wait(bo, false, false)); WARN_ON(ttm_bo_wait(bo, false, false));
nvkm_vm_unmap(vma); nvkm_vm_unmap(vma);
} }
......
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