diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-07-22 12:46:09 -0400 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2014-08-05 10:07:50 -0400 |
commit | 48ba813701eb14b3008edefef4a0789b328e278c (patch) | |
tree | cab45fc97db3eb800338196add945c6f47643cee /drivers/gpu/drm/drm_lock.c | |
parent | 9f8d21ea276177547725a60cefc1b6da742f14d3 (diff) |
drm: drop redundant drm_file->is_master
The drm_file->is_master field is redundant as it's equivalent to:
drm_file->master && drm_file->master == drm_file->minor->master
1) "=>"
Whenever we set drm_file->is_master, we also set:
drm_file->minor->master = drm_file->master;
Whenever we clear drm_file->is_master, we also call:
drm_master_put(&drm_file->minor->master);
which implicitly clears it to NULL.
2) "<="
minor->master cannot be set if it is non-NULL. Therefore, it stays as
is unless a file drops it.
If minor->master is NULL, it is only set by places that also adjust
drm_file->is_master.
Therefore, we can safely drop is_master and replace it by an inline helper
that matches:
drm_file->master && drm_file->master == drm_file->minor->master
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/drm_lock.c')
-rw-r--r-- | drivers/gpu/drm/drm_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_lock.c b/drivers/gpu/drm/drm_lock.c index f6452682141b..786401cd5f60 100644 --- a/drivers/gpu/drm/drm_lock.c +++ b/drivers/gpu/drm/drm_lock.c | |||
@@ -111,7 +111,7 @@ int drm_lock(struct drm_device *dev, void *data, struct drm_file *file_priv) | |||
111 | /* don't set the block all signals on the master process for now | 111 | /* don't set the block all signals on the master process for now |
112 | * really probably not the correct answer but lets us debug xkb | 112 | * really probably not the correct answer but lets us debug xkb |
113 | * xserver for now */ | 113 | * xserver for now */ |
114 | if (!file_priv->is_master) { | 114 | if (!drm_is_master(file_priv)) { |
115 | sigemptyset(&dev->sigmask); | 115 | sigemptyset(&dev->sigmask); |
116 | sigaddset(&dev->sigmask, SIGSTOP); | 116 | sigaddset(&dev->sigmask, SIGSTOP); |
117 | sigaddset(&dev->sigmask, SIGTSTP); | 117 | sigaddset(&dev->sigmask, SIGTSTP); |