summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_gem.c
diff options
context:
space:
mode:
authorChris Wilson2012-12-03 12:49:00 +0100
committerDaniel Vetter2012-12-03 17:22:16 +0100
commita2165e312381f35b8abd7dcb8a8ab955bc60d867 (patch)
tree204f81ca8c75aeaadc6c425959ad96247a56958a /drivers/gpu/drm/i915/i915_gem.c
parentdrm/i915: Set sync_seqno properly after seqno wrap (diff)
downloadkernel-qcow2-linux-a2165e312381f35b8abd7dcb8a8ab955bc60d867.tar.gz
kernel-qcow2-linux-a2165e312381f35b8abd7dcb8a8ab955bc60d867.tar.xz
kernel-qcow2-linux-a2165e312381f35b8abd7dcb8a8ab955bc60d867.zip
drm/i915: Decouple the object from the unbound list before freeing pages
As we may actually allocate in order to save the physical swizzling bits during the free, we have to be careful not to trigger the shrinker on the same object. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> [danvet: Added a small comment in the code to really drive the scariness of this patch home.] Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gem.c')
-rw-r--r--drivers/gpu/drm/i915/i915_gem.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 4ef8b5714337..c1f691958f89 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -1696,10 +1696,14 @@ i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
if (obj->pages_pin_count)
return -EBUSY;
+ /* ->put_pages might need to allocate memory for the bit17 swizzle
+ * array, hence protect them from being reaped by removing them from gtt
+ * lists early. */
+ list_del(&obj->gtt_list);
+
ops->put_pages(obj);
obj->pages = NULL;
- list_del(&obj->gtt_list);
if (i915_gem_object_is_purgeable(obj))
i915_gem_object_truncate(obj);