Searched refs:busy_bo (Results 1 - 4 of 4) sorted by relevance

/linux-master/drivers/gpu/drm/i915/
H A Di915_gem_evict.h28 struct drm_i915_gem_object **busy_bo);
H A Di915_gem_evict.c444 * @busy_bo: Optional pointer to struct drm_i915_gem_object. If not NULL, then
446 * then @busy_bo will point to it. -EBUSY is also returned. The caller must drop
459 struct drm_i915_gem_object **busy_bo)
499 if (busy_bo) {
500 *busy_bo = vma->obj; /* holds ref */
458 i915_gem_evict_vm(struct i915_address_space *vm, struct i915_gem_ww_ctx *ww, struct drm_i915_gem_object **busy_bo) argument
/linux-master/drivers/gpu/drm/ttm/
H A Dttm_bo.c562 * @busy_bo: BO which couldn't be locked with trylock
568 static int ttm_mem_evict_wait_busy(struct ttm_buffer_object *busy_bo, argument
574 if (!busy_bo || !ticket)
578 r = dma_resv_lock_interruptible(busy_bo->base.resv,
581 r = dma_resv_lock(busy_bo->base.resv, ticket);
589 dma_resv_unlock(busy_bo->base.resv);
600 struct ttm_buffer_object *bo = NULL, *busy_bo = NULL; local
612 if (busy && !busy_bo && ticket !=
614 busy_bo = res->bo;
627 if (busy_bo
[all...]
/linux-master/drivers/gpu/drm/i915/gem/
H A Di915_gem_execbuffer.c768 * the busy_bo, using the full lock (after dropping the vm->mutex to
797 struct drm_i915_gem_object *busy_bo = NULL; local
799 err = i915_gem_evict_vm(eb->context->vm, &eb->ww, &busy_bo);
801 if (err && busy_bo) {
802 err = i915_gem_object_lock(busy_bo, &eb->ww);
803 i915_gem_object_put(busy_bo);

Completed in 101 milliseconds