From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: Dave Gordon <david.s.gordon@intel.com>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v5 5/7] drm/i915: move locking in i915_gem_unmap_dma_buf()
Date: Mon, 29 Feb 2016 12:07:59 +0000 [thread overview]
Message-ID: <56D4349F.4080009@linux.intel.com> (raw)
In-Reply-To: <1456744394-29831-6-git-send-email-david.s.gordon@intel.com>
On 29/02/16 11:13, Dave Gordon wrote:
> From: Chris Wilson <chris@chris-wilson.co.uk>
>
> The struct_mutex doesn't need to be (and therefore shouldn't be)
> held around the various non-i915 operations in this function. We
> only need the struct_mutex when we get to the unpin_pages() call.
>
> Extracted from Chris Wilson's patch:
> drm/i915: Refactor duplicate object vmap functions
> in preparation for the reimplementation of the same.
>
> Signed-off-by: Dave Gordon <david.s.gordon@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> ---
> drivers/gpu/drm/i915/i915_gem_dmabuf.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_gem_dmabuf.c b/drivers/gpu/drm/i915/i915_gem_dmabuf.c
> index aee4149..68e21d1 100644
> --- 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);
> }
Looks OK under my superficial understanding of dmabuf. But then
i915_gem_map_dma_buf holds the mutex for too long as well. Anyway,
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Regards,
Tvrtko
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2016-02-29 12:08 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-29 11:13 [PATCH v5 0/7] Reorganise calls to vmap() GEM objects Dave Gordon
2016-02-29 11:13 ` [PATCH v5 1/7] drm,i915: introduce drm_malloc_gfp() Dave Gordon
2016-02-29 11:13 ` [PATCH v5 2/7] drm: add parameter-order checking to drm memory allocators Dave Gordon
2016-02-29 16:16 ` Tvrtko Ursulin
2016-02-29 16:55 ` [Intel-gfx] " Chris Wilson
2016-02-29 17:00 ` Emil Velikov
2016-02-29 11:13 ` [PATCH v5 3/7] drm/i915: introduce and use i915_gem_object_vmap_range() Dave Gordon
2016-02-29 11:53 ` Tvrtko Ursulin
2016-02-29 11:13 ` [PATCH v5 4/7] drm/i915: optimise i915_gem_object_vmap_range() for small objects Dave Gordon
2016-02-29 12:01 ` Tvrtko Ursulin
2016-02-29 11:13 ` [PATCH v5 5/7] drm/i915: move locking in i915_gem_unmap_dma_buf() Dave Gordon
2016-02-29 12:07 ` Tvrtko Ursulin [this message]
2016-02-29 11:13 ` [PATCH v5 6/7] drm/i915: deduplicate intel_pin_and_map_ringbuffer_obj() error handling Dave Gordon
2016-02-29 12:10 ` Tvrtko Ursulin
2016-02-29 11:13 ` [PATCH v5 7/7] drm/i915: refactor duplicate object vmap functions (reworked some more) Dave Gordon
2016-02-29 12:36 ` Tvrtko Ursulin
2016-02-29 20:42 ` Dave Gordon
2016-02-29 11:28 ` ✗ Fi.CI.BAT: failure for Reorganise calls to vmap() GEM objects (rev3) Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56D4349F.4080009@linux.intel.com \
--to=tvrtko.ursulin@linux.intel.com \
--cc=david.s.gordon@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.