projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1e429f
)
drm/i915/dmabuf: Tighten struct_mutex for unmap_dma_buf
author
Chris Wilson
<chris@chris-wilson.co.uk>
Fri, 8 Apr 2016 11:11:09 +0000
(12:11 +0100)
committer
Chris Wilson
<chris@chris-wilson.co.uk>
Mon, 11 Apr 2016 16:10:56 +0000
(17:10 +0100)
We only need the struct_mutex to manipulate the pages_pin_count on the
object, we do not need to hold our BKL when freeing the exported
scatterlist.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link:
http://patchwork.freedesktop.org/patch/msgid/1460113874-17366-2-git-send-email-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/i915_gem_dmabuf.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_gem_dmabuf.c
b/drivers/gpu/drm/i915/i915_gem_dmabuf.c
index 1f3eef6fb345cdb97ccd31b8cefe750ab65b9c2b..616f07830b7e166332676ecedda5069629e6a21c 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_gem_dmabuf.c
+++ b/
drivers/gpu/drm/i915/i915_gem_dmabuf.c
@@
-95,14
+95,12
@@
static void i915_gem_unmap_dma_buf(struct dma_buf_attachment *attachment,
{
struct drm_i915_gem_object *obj = dma_buf_to_obj(attachment->dmabuf);
- mutex_lock(&obj->base.dev->struct_mutex);
-
dma_unmap_sg(attachment->dev, sg->sgl, sg->nents, dir);
sg_free_table(sg);
kfree(sg);
+ mutex_lock(&obj->base.dev->struct_mutex);
i915_gem_object_unpin_pages(obj);
-
mutex_unlock(&obj->base.dev->struct_mutex);
}