Skip to content

Commit

Permalink
drm/modes: move reference taking into object lookup.
Browse files Browse the repository at this point in the history
When we lookup an ref counted object we now take a proper reference
using kref_get_unless_zero.

Framebuffer lookup no longer needs do this itself.

Convert rmfb to using framebuffer lookup and deal with the fact
it now gets an extra reference that we have to cleanup. This should
mean we can avoid holding fb_lock across rmfb. (if I'm wrong let me
know).

We also now only hold the fbs_lock around the list manipulation.

"Previously fb refcounting, and especially the weak reference
(kref_get_unless_zero) used in fb lookups have been protected by fb_lock.
But with the refactoring to share refcounting in the drm_mode_object base
class that switched to being protected by idr_mutex, which means fb_lock
critical sections can be reduced."

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Dave Airlie committed Apr 22, 2016
1 parent c7e1c59 commit 72fe90b
Showing 1 changed file with 20 additions and 17 deletions.
37 changes: 20 additions & 17 deletions drivers/gpu/drm/drm_crtc.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,11 @@ static struct drm_mode_object *_object_find(struct drm_device *dev,
if (obj &&
obj->type == DRM_MODE_OBJECT_BLOB)
obj = NULL;

if (obj && obj->free_cb) {
if (!kref_get_unless_zero(&obj->refcount))
obj = NULL;
}
mutex_unlock(&dev->mode_config.idr_mutex);

return obj;
Expand Down Expand Up @@ -495,11 +500,8 @@ struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,

mutex_lock(&dev->mode_config.fb_lock);
obj = _object_find(dev, id, DRM_MODE_OBJECT_FB);
if (obj) {
if (obj)
fb = obj_to_fb(obj);
if (!kref_get_unless_zero(&fb->base.refcount))
fb = NULL;
}
mutex_unlock(&dev->mode_config.fb_lock);

return fb;
Expand Down Expand Up @@ -3474,37 +3476,38 @@ int drm_mode_rmfb(struct drm_device *dev,
{
struct drm_framebuffer *fb = NULL;
struct drm_framebuffer *fbl = NULL;
struct drm_mode_object *obj;
uint32_t *id = data;
int found = 0;

if (!drm_core_check_feature(dev, DRIVER_MODESET))
return -EINVAL;

fb = drm_framebuffer_lookup(dev, *id);
if (!fb)
return -ENOENT;

mutex_lock(&file_priv->fbs_lock);
mutex_lock(&dev->mode_config.fb_lock);
obj = _object_find(dev, *id, DRM_MODE_OBJECT_FB);
if (!obj)
goto fail_lookup;
fb = obj_to_fb(obj);
list_for_each_entry(fbl, &file_priv->fbs, filp_head)
if (fb == fbl)
found = 1;
if (!found)
goto fail_lookup;
if (!found) {
mutex_unlock(&file_priv->fbs_lock);
goto fail_unref;
}

list_del_init(&fb->filp_head);
mutex_unlock(&dev->mode_config.fb_lock);
mutex_unlock(&file_priv->fbs_lock);

/* we now own the reference that was stored in the fbs list */
drm_framebuffer_unreference(fb);

return 0;
/* drop the reference we picked up in framebuffer lookup */
drm_framebuffer_unreference(fb);

fail_lookup:
mutex_unlock(&dev->mode_config.fb_lock);
mutex_unlock(&file_priv->fbs_lock);
return 0;

fail_unref:
drm_framebuffer_unreference(fb);
return -ENOENT;
}

Expand Down

0 comments on commit 72fe90b

Please sign in to comment.