Skip to content

Commit

Permalink
drm/i915: Only track bound elements of the GTT
Browse files Browse the repository at this point in the history
The premise here is to simply avoiding having to acquire the vm->mutex
inside vma create/destroy to update the vm->unbound_lists, to avoid some
nasty lock recursions later.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191004134015.13204-2-chris@chris-wilson.co.uk
  • Loading branch information
Chris Wilson committed Oct 4, 2019
1 parent b290a78 commit 5e05345
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 36 deletions.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/gem/i915_gem_stolen.c
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ i915_gem_object_create_stolen_for_preallocated(struct drm_i915_private *dev_priv
__i915_vma_set_map_and_fenceable(vma);

mutex_lock(&ggtt->vm.mutex);
list_move_tail(&vma->vm_link, &ggtt->vm.bound_list);
list_add_tail(&vma->vm_link, &ggtt->vm.bound_list);
mutex_unlock(&ggtt->vm.mutex);

GEM_BUG_ON(i915_gem_object_is_shrinkable(obj));
Expand Down
23 changes: 4 additions & 19 deletions drivers/gpu/drm/i915/i915_gem_gtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -505,19 +505,12 @@ static void i915_address_space_fini(struct i915_address_space *vm)

static void ppgtt_destroy_vma(struct i915_address_space *vm)
{
struct list_head *phases[] = {
&vm->bound_list,
&vm->unbound_list,
NULL,
}, **phase;
struct i915_vma *vma, *vn;

mutex_lock(&vm->i915->drm.struct_mutex);
for (phase = phases; *phase; phase++) {
struct i915_vma *vma, *vn;

list_for_each_entry_safe(vma, vn, *phase, vm_link)
i915_vma_destroy(vma);
}
list_for_each_entry_safe(vma, vn, &vm->bound_list, vm_link)
i915_vma_destroy(vma);
GEM_BUG_ON(!list_empty(&vm->bound_list));
mutex_unlock(&vm->i915->drm.struct_mutex);
}

Expand All @@ -528,9 +521,6 @@ static void __i915_vm_release(struct work_struct *work)

ppgtt_destroy_vma(vm);

GEM_BUG_ON(!list_empty(&vm->bound_list));
GEM_BUG_ON(!list_empty(&vm->unbound_list));

vm->cleanup(vm);
i915_address_space_fini(vm);

Expand Down Expand Up @@ -569,7 +559,6 @@ static void i915_address_space_init(struct i915_address_space *vm, int subclass)

stash_init(&vm->free_pages);

INIT_LIST_HEAD(&vm->unbound_list);
INIT_LIST_HEAD(&vm->bound_list);
}

Expand Down Expand Up @@ -1887,10 +1876,6 @@ static struct i915_vma *pd_vma_create(struct gen6_ppgtt *ppgtt, int size)
INIT_LIST_HEAD(&vma->obj_link);
INIT_LIST_HEAD(&vma->closed_link);

mutex_lock(&vma->vm->mutex);
list_add(&vma->vm_link, &vma->vm->unbound_list);
mutex_unlock(&vma->vm->mutex);

return vma;
}

Expand Down
5 changes: 0 additions & 5 deletions drivers/gpu/drm/i915/i915_gem_gtt.h
Original file line number Diff line number Diff line change
Expand Up @@ -320,11 +320,6 @@ struct i915_address_space {
*/
struct list_head bound_list;

/**
* List of vma that are not unbound.
*/
struct list_head unbound_list;

struct pagestash free_pages;

/* Global GTT */
Expand Down
12 changes: 2 additions & 10 deletions drivers/gpu/drm/i915/i915_vma.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,10 +218,6 @@ vma_create(struct drm_i915_gem_object *obj,

spin_unlock(&obj->vma.lock);

mutex_lock(&vm->mutex);
list_add(&vma->vm_link, &vm->unbound_list);
mutex_unlock(&vm->mutex);

return vma;

err_vma:
Expand Down Expand Up @@ -657,7 +653,7 @@ i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, color));

mutex_lock(&vma->vm->mutex);
list_move_tail(&vma->vm_link, &vma->vm->bound_list);
list_add_tail(&vma->vm_link, &vma->vm->bound_list);
mutex_unlock(&vma->vm->mutex);

if (vma->obj) {
Expand Down Expand Up @@ -685,7 +681,7 @@ i915_vma_remove(struct i915_vma *vma)

mutex_lock(&vma->vm->mutex);
drm_mm_remove_node(&vma->node);
list_move_tail(&vma->vm_link, &vma->vm->unbound_list);
list_del(&vma->vm_link);
mutex_unlock(&vma->vm->mutex);

/*
Expand Down Expand Up @@ -798,10 +794,6 @@ static void __i915_vma_destroy(struct i915_vma *vma)
GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
GEM_BUG_ON(vma->fence);

mutex_lock(&vma->vm->mutex);
list_del(&vma->vm_link);
mutex_unlock(&vma->vm->mutex);

if (vma->obj) {
struct drm_i915_gem_object *obj = vma->obj;

Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/selftests/i915_gem_gtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ static void track_vma_bind(struct i915_vma *vma)
vma->pages = obj->mm.pages;

mutex_lock(&vma->vm->mutex);
list_move_tail(&vma->vm_link, &vma->vm->bound_list);
list_add_tail(&vma->vm_link, &vma->vm->bound_list);
mutex_unlock(&vma->vm->mutex);
}

Expand Down

0 comments on commit 5e05345

Please sign in to comment.