[Intel-gfx] [PATCH 2/5] drm/i915: not finding a fence is a non-recoverable condition
Daniel Vetter
daniel.vetter at ffwll.ch
Tue Apr 19 22:46:01 CEST 2011
This happens in two cases:
- userspace got its fence accounting wrong or
- the kernel got its fence accounting wrong.
In both cases there's absolutely no point in calling evict_everything,
that will not magically bring back the missing fence. So return a
different (hopefully somewhat sensible) error code.
This has the added benefit that out-of-gtt can be distinguish from
broken fence accounting by simply looking at the ioctl return code.
Signed-off-by: Daniel Vetter <daniel.vetter at ffwll.ch>
---
drivers/gpu/drm/i915/i915_gem.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 1ef0b91..5c900d3 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -2735,7 +2735,7 @@ i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
reg = i915_find_fence_reg(dev, pipelined);
if (reg == NULL)
- return -ENOSPC;
+ return -EDEADLK;
if ((old = reg->obj)) {
drm_gem_object_reference(&old->base);
--
1.7.4.1
More information about the Intel-gfx
mailing list