]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
drm/i915: Attempt to uncouple object after catastrophic failure in unbind
authorChris Wilson <chris@chris-wilson.co.uk>
Fri, 23 Jul 2010 22:18:51 +0000 (23:18 +0100)
committerEric Anholt <eric@anholt.net>
Mon, 2 Aug 2010 02:56:29 +0000 (19:56 -0700)
If we fail to flush outstanding GPU writes but return the memory to the
system, we risk corrupting memory should the GPU recovery and complete
those writes. On the other hand, if we bail early and free the object
then we have a definite use-after-free and real memory corruption.
Choose the lesser of two evils, since in order to recover from the hung
GPU we need to completely reset it, those pending writes should
never happen.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Eric Anholt <eric@anholt.net>
drivers/gpu/drm/i915/i915_gem.c

index f45f385c84cde98d51a3aee84eee09a4ab343a50..eeb768818136c3c5b35637612029304bba657d65 100644 (file)
@@ -1967,11 +1967,12 @@ i915_gem_object_unbind(struct drm_gem_object *obj)
         * before we unbind.
         */
        ret = i915_gem_object_set_to_cpu_domain(obj, 1);
-       if (ret) {
-               if (ret != -ERESTARTSYS)
-                       DRM_ERROR("set_domain failed: %d\n", ret);
+       if (ret == -ERESTARTSYS)
                return ret;
-       }
+       /* Continue on if we fail due to EIO, the GPU is hung so we
+        * should be safe and we need to cleanup or else we might
+        * cause memory corruption through use-after-free.
+        */
 
        BUG_ON(obj_priv->active);
 
@@ -2007,7 +2008,7 @@ i915_gem_object_unbind(struct drm_gem_object *obj)
 
        trace_i915_gem_object_unbind(obj);
 
-       return 0;
+       return ret;
 }
 
 static struct drm_gem_object *