aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2013-01-02 05:31:22 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-01-07 04:30:53 -0500
commit93be8788e648817d62fda33e2998eb6ca6ebf3a3 (patch)
tree0c30130bb74ea0f3d784a2b6ee14668285a426e7
parentd1c3ed669a2d452cacfb48c2d171a1f364dae2ed (diff)
drm/i915; Only increment the user-pin-count after successfully pinning the bo
As along the error path we do not correct the user pin-count for the failure, we may end up with userspace believing that it has a pinned object at offset 0 (when interrupted by a signal for example). Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Cc: stable@vger.kernel.org Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r--drivers/gpu/drm/i915/i915_gem.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index da3c82e301b1..5791ecd908a5 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -3522,14 +3522,15 @@ i915_gem_pin_ioctl(struct drm_device *dev, void *data,
3522 goto out; 3522 goto out;
3523 } 3523 }
3524 3524
3525 obj->user_pin_count++; 3525 if (obj->user_pin_count == 0) {
3526 obj->pin_filp = file;
3527 if (obj->user_pin_count == 1) {
3528 ret = i915_gem_object_pin(obj, args->alignment, true, false); 3526 ret = i915_gem_object_pin(obj, args->alignment, true, false);
3529 if (ret) 3527 if (ret)
3530 goto out; 3528 goto out;
3531 } 3529 }
3532 3530
3531 obj->user_pin_count++;
3532 obj->pin_filp = file;
3533
3533 /* XXX - flush the CPU caches for pinned objects 3534 /* XXX - flush the CPU caches for pinned objects
3534 * as the X server doesn't manage domains yet 3535 * as the X server doesn't manage domains yet
3535 */ 3536 */