diff options
| author | Daniel Vetter <[email protected]> | 2016-06-17 07:33:20 +0000 |
|---|---|---|
| committer | Daniel Vetter <[email protected]> | 2016-06-20 20:02:01 +0000 |
| commit | a77316bf24f4a86482397707997ff7c951caca56 (patch) | |
| tree | 5d2bc3b37cf022cddd7d9abe9f43cd9a8fb85770 /drivers/gpu/drm/drm_auth.c | |
| parent | drm: Only do the hw.lock cleanup in master_relase for !MODESET (diff) | |
| download | kernel-a77316bf24f4a86482397707997ff7c951caca56.tar.gz kernel-a77316bf24f4a86482397707997ff7c951caca56.zip | |
drm: Move authmagic cleanup into drm_master_release
It's related, and soon authmagic will also use the master_mutex.
There is an ever-so-slightly semantic change here:
- authmagic will only be cleaned up for primary_client drm_minors. But
it's impossible to create authmagic on render/control nodes, so this
is fine.
- The cleanup is moved down a bit in the release processing. Doesn't
matter at all since authmagic is purely internal logic used by the
core ioctl access checks, and when we're in a file's release
callback no one can do ioctls any more.
v2: Rebased.
Cc: Chris Wilson <[email protected]>
Reviewed-by: Chris Wilson <[email protected]> (v1)
Reviewed-by: Emil Velikov <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/drm_auth.c')
| -rw-r--r-- | drivers/gpu/drm/drm_auth.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_auth.c b/drivers/gpu/drm/drm_auth.c index 54ad64a6d052..24f0f2dc1cce 100644 --- a/drivers/gpu/drm/drm_auth.c +++ b/drivers/gpu/drm/drm_auth.c @@ -248,6 +248,11 @@ void drm_master_release(struct drm_file *file_priv) struct drm_device *dev = file_priv->minor->dev; struct drm_master *master = file_priv->master; + mutex_lock(&dev->struct_mutex); + if (file_priv->magic) + idr_remove(&file_priv->master->magic_map, file_priv->magic); + mutex_unlock(&dev->struct_mutex); + mutex_lock(&dev->master_mutex); if (!file_priv->is_master) goto out; |
