aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drm_gem.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/drm/drm_gem.h')
-rw-r--r--include/drm/drm_gem.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h
index 7a592d7e398b..15e7f007380f 100644
--- a/include/drm/drm_gem.h
+++ b/include/drm/drm_gem.h
@@ -142,8 +142,11 @@ drm_gem_object_reference(struct drm_gem_object *obj)
142static inline void 142static inline void
143drm_gem_object_unreference(struct drm_gem_object *obj) 143drm_gem_object_unreference(struct drm_gem_object *obj)
144{ 144{
145 if (obj != NULL) 145 if (obj != NULL) {
146 WARN_ON(!mutex_is_locked(&obj->dev->struct_mutex));
147
146 kref_put(&obj->refcount, drm_gem_object_free); 148 kref_put(&obj->refcount, drm_gem_object_free);
149 }
147} 150}
148 151
149static inline void 152static inline void