diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-01-24 11:20:34 -0500 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2013-02-16 18:13:26 -0500 |
commit | dfe96ddcfa22b44100814b9435770f6ff1309d37 (patch) | |
tree | 69459fab507e7a937abf3e40e888789e684a2c86 | |
parent | 16ef3dfe460616f14120973f78fe640e79862654 (diff) |
omapdrm: simplify locking in the fb debugfs file
We don't need to hold onto mode_config.mutex any more to keep the fb
objects around. And locking dev->struct_mutex is also not required,
since omap_gem_describe only reads data anyway. And for a debug
interface it's better to grab fewer locks in case the driver is
deadlocked already ...
The only thing we need is to hold onto mode_config.fb_lock to ensure
the user-created fbs don't disappear. The fbcon fb doesn't need any
protection, since it lives as long as the driver (and so the debugfs
files) itself. And if the teardown/setup isn't following the right
sequence grabbing locks won't prevent a NULL deref on priv->fbdev if
the fb is not yet (or no longer) there.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Rob Clark <robdclark@gmail.com>
-rw-r--r-- | drivers/gpu/drm/omapdrm/omap_debugfs.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_debugfs.c b/drivers/gpu/drm/omapdrm/omap_debugfs.c index c0aa40f8ad6a..c27f59da7f29 100644 --- a/drivers/gpu/drm/omapdrm/omap_debugfs.c +++ b/drivers/gpu/drm/omapdrm/omap_debugfs.c | |||
@@ -57,17 +57,6 @@ static int fb_show(struct seq_file *m, void *arg) | |||
57 | struct drm_device *dev = node->minor->dev; | 57 | struct drm_device *dev = node->minor->dev; |
58 | struct omap_drm_private *priv = dev->dev_private; | 58 | struct omap_drm_private *priv = dev->dev_private; |
59 | struct drm_framebuffer *fb; | 59 | struct drm_framebuffer *fb; |
60 | int ret; | ||
61 | |||
62 | ret = mutex_lock_interruptible(&dev->mode_config.mutex); | ||
63 | if (ret) | ||
64 | return ret; | ||
65 | |||
66 | ret = mutex_lock_interruptible(&dev->struct_mutex); | ||
67 | if (ret) { | ||
68 | mutex_unlock(&dev->mode_config.mutex); | ||
69 | return ret; | ||
70 | } | ||
71 | 60 | ||
72 | seq_printf(m, "fbcon "); | 61 | seq_printf(m, "fbcon "); |
73 | omap_framebuffer_describe(priv->fbdev->fb, m); | 62 | omap_framebuffer_describe(priv->fbdev->fb, m); |
@@ -82,9 +71,6 @@ static int fb_show(struct seq_file *m, void *arg) | |||
82 | } | 71 | } |
83 | mutex_unlock(&dev->mode_config.fb_lock); | 72 | mutex_unlock(&dev->mode_config.fb_lock); |
84 | 73 | ||
85 | mutex_unlock(&dev->struct_mutex); | ||
86 | mutex_unlock(&dev->mode_config.mutex); | ||
87 | |||
88 | return 0; | 74 | return 0; |
89 | } | 75 | } |
90 | 76 | ||