Skip to content

Commit

Permalink
drm/i915: Convert the file mutex into a spinlock
Browse files Browse the repository at this point in the history
Daniel Vetter pointed out that in this case is would be clearer and
cleaner to use a spinlock instead of a mutex to protect the per-file
request list manipulation. Make it so.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
  • Loading branch information
Chris Wilson committed Sep 26, 2010
1 parent 447da18 commit 1c25595
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/i915_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -2173,8 +2173,8 @@ int i915_driver_open(struct drm_device *dev, struct drm_file *file)

file->driver_priv = file_priv;

spin_lock_init(&file_priv->mm.lock);
INIT_LIST_HEAD(&file_priv->mm.request_list);
mutex_init(&file_priv->mutex);

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/i915/i915_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -851,8 +851,8 @@ struct drm_i915_gem_request {
};

struct drm_i915_file_private {
struct mutex mutex;
struct {
struct spinlock lock;
struct list_head request_list;
} mm;
};
Expand Down
28 changes: 15 additions & 13 deletions drivers/gpu/drm/i915/i915_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1694,11 +1694,11 @@ i915_add_request(struct drm_device *dev,
list_add_tail(&request->list, &ring->request_list);

if (file_priv) {
mutex_lock(&file_priv->mutex);
spin_lock(&file_priv->mm.lock);
request->file_priv = file_priv;
list_add_tail(&request->client_list,
&file_priv->mm.request_list);
mutex_unlock(&file_priv->mutex);
spin_unlock(&file_priv->mm.lock);
}

if (!dev_priv->mm.suspended) {
Expand Down Expand Up @@ -1733,11 +1733,15 @@ i915_retire_commands(struct drm_device *dev, struct intel_ring_buffer *ring)
static inline void
i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
{
if (request->file_priv) {
mutex_lock(&request->file_priv->mutex);
list_del(&request->client_list);
mutex_unlock(&request->file_priv->mutex);
}
struct drm_i915_file_private *file_priv = request->file_priv;

if (!file_priv)
return;

spin_lock(&file_priv->mm.lock);
list_del(&request->client_list);
request->file_priv = NULL;
spin_unlock(&file_priv->mm.lock);
}

static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
Expand Down Expand Up @@ -3464,15 +3468,15 @@ i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
u32 seqno = 0;
int ret;

mutex_lock(&file_priv->mutex);
spin_lock(&file_priv->mm.lock);
list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
if (time_after_eq(request->emitted_jiffies, recent_enough))
break;

ring = request->ring;
seqno = request->seqno;
}
mutex_unlock(&file_priv->mutex);
spin_unlock(&file_priv->mm.lock);

if (seqno == 0)
return 0;
Expand Down Expand Up @@ -4974,8 +4978,7 @@ void i915_gem_release(struct drm_device *dev, struct drm_file *file)
* later retire_requests won't dereference our soon-to-be-gone
* file_priv.
*/
mutex_lock(&dev->struct_mutex);
mutex_lock(&file_priv->mutex);
spin_lock(&file_priv->mm.lock);
while (!list_empty(&file_priv->mm.request_list)) {
struct drm_i915_gem_request *request;

Expand All @@ -4985,8 +4988,7 @@ void i915_gem_release(struct drm_device *dev, struct drm_file *file)
list_del(&request->client_list);
request->file_priv = NULL;
}
mutex_unlock(&file_priv->mutex);
mutex_unlock(&dev->struct_mutex);
spin_unlock(&file_priv->mm.lock);
}

static int
Expand Down

0 comments on commit 1c25595

Please sign in to comment.