summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2010-07-20 20:58:00 +0200
committerEric Anholt <eric@anholt.net>2010-07-26 20:27:46 +0200
commitfbd41a7e5843be27386c48b3d0816e93e7865d5d (patch)
tree17a851e7577e5be3ad4423fb669f6752d5d7e014 /drivers
parentdrm/i915: don't free non-existent compressed llb on ILK+ (diff)
downloadlinux-fbd41a7e5843be27386c48b3d0816e93e7865d5d.tar.xz
linux-fbd41a7e5843be27386c48b3d0816e93e7865d5d.zip
drm/i915: fix deadlock in fb teardown
At module unload time we'll tear down the fbdev state. We do so under the struct mutex, so we shouldn't try to use the unlocked variant of the GEM object unreference function or we may deadlock. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org> Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/i915/intel_fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_fb.c b/drivers/gpu/drm/i915/intel_fb.c
index 0f4946a6057e..3e18c9e7729b 100644
--- a/drivers/gpu/drm/i915/intel_fb.c
+++ b/drivers/gpu/drm/i915/intel_fb.c
@@ -236,7 +236,7 @@ int intel_fbdev_destroy(struct drm_device *dev,
drm_framebuffer_cleanup(&ifb->base);
if (ifb->obj)
- drm_gem_object_unreference_unlocked(ifb->obj);
+ drm_gem_object_unreference(ifb->obj);
return 0;
}