diff options
author | Daniel Vetter <[email protected]> | 2014-11-26 10:26:05 +0100 |
---|---|---|
committer | Daniel Vetter <[email protected]> | 2014-12-03 09:35:18 +0100 |
commit | f245860ece9b18394b679c2c55738babc904f506 (patch) | |
tree | c0f34cbab19b230b799e38118778ae0e2e4aa01e | |
parent | a4b3a5713d9f1ca94762b468117f918d3b15e5c4 (diff) |
drm/i915: Check locking in i915_gem_request_unreference
With refcounting it looks like you can just drop that refcount, but
that's not really the case. So make sure no one forgets.
Motivated by the unlocked call in the mmio flip code.
Cc: John Harrison <[email protected]>
Cc: Thomas Daniel <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 23a1afd2f7ca..9a9372a42c97 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -2046,6 +2046,7 @@ i915_gem_request_reference(struct drm_i915_gem_request *req) static inline void i915_gem_request_unreference(struct drm_i915_gem_request *req) { + WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex)); kref_put(&req->ref, i915_gem_request_free); } |