Skip to content

Commit

Permalink
drm/i915: Propagate errors on awaiting already signaled dma-fences
Browse files Browse the repository at this point in the history
If we see an already signaled dma-fence that we want to await on, we skip
adding to the i915_sw_fence. However, we should pay attention to whether
there was an error on that fence and if so propagate it for our future
request.

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/20191206160428.1503343-3-chris@chris-wilson.co.uk
  • Loading branch information
Chris Wilson committed Dec 6, 2019
1 parent 9e31c1f commit cbab8d8
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions drivers/gpu/drm/i915/i915_sw_fence.c
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,10 @@ static void dma_i915_sw_fence_wake_timer(struct dma_fence *dma,
struct i915_sw_fence *fence;

fence = xchg(&cb->base.fence, NULL);
if (fence)
if (fence) {
i915_sw_fence_set_error_once(fence, dma->error);
i915_sw_fence_complete(fence);
}

irq_work_queue(&cb->work);
}
Expand Down Expand Up @@ -457,8 +459,10 @@ int i915_sw_fence_await_dma_fence(struct i915_sw_fence *fence,
debug_fence_assert(fence);
might_sleep_if(gfpflags_allow_blocking(gfp));

if (dma_fence_is_signaled(dma))
if (dma_fence_is_signaled(dma)) {
i915_sw_fence_set_error_once(fence, dma->error);
return 0;
}

cb = kmalloc(timeout ?
sizeof(struct i915_sw_dma_fence_cb_timer) :
Expand All @@ -468,7 +472,12 @@ int i915_sw_fence_await_dma_fence(struct i915_sw_fence *fence,
if (!gfpflags_allow_blocking(gfp))
return -ENOMEM;

return dma_fence_wait(dma, false);
ret = dma_fence_wait(dma, false);
if (ret)
return ret;

i915_sw_fence_set_error_once(fence, dma->error);
return 0;
}

cb->fence = fence;
Expand Down Expand Up @@ -518,8 +527,10 @@ int __i915_sw_fence_await_dma_fence(struct i915_sw_fence *fence,

debug_fence_assert(fence);

if (dma_fence_is_signaled(dma))
if (dma_fence_is_signaled(dma)) {
i915_sw_fence_set_error_once(fence, dma->error);
return 0;
}

cb->fence = fence;
i915_sw_fence_await(fence);
Expand Down Expand Up @@ -553,8 +564,7 @@ int i915_sw_fence_await_reservation(struct i915_sw_fence *fence,
struct dma_fence **shared;
unsigned int count, i;

ret = dma_resv_get_fences_rcu(resv,
&excl, &count, &shared);
ret = dma_resv_get_fences_rcu(resv, &excl, &count, &shared);
if (ret)
return ret;

Expand Down

0 comments on commit cbab8d8

Please sign in to comment.