From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/i915: Convert WARNs during userptr revoke to SIGBUS
Date: Thu, 24 Sep 2015 11:55:23 +0100 [thread overview]
Message-ID: <5603D69B.5020709@linux.intel.com> (raw)
In-Reply-To: <20150924103117.GT6739@nuc-i3427.alporthouse.com>
On 09/24/2015 11:31 AM, Chris Wilson wrote:
> On Thu, Sep 24, 2015 at 11:23:48AM +0100, Tvrtko Ursulin wrote:
>>
>> On 09/23/2015 09:07 PM, Chris Wilson wrote:
>>> If the client revokes the virtual address it asked to be mapped into GPU
>>> space via userptr (by using anything along the lines of mmap, mprotect,
>>> madvise, munmap, ftruncate etc) the mmu notifier sends a range
>>> invalidate command to userptr. Upon receiving the invalidation signal
>>> for the revoked range, we try to release the struct pages we pinned into
>>> the GTT. However, this can fail if any of the GPU's VMA are pinned for
>>> use by the hardware (i.e. despite the user's intention we cannot
>>> relinquish the client's address range and keep uptodate with whatever is
>>> placed in there). Currently we emit a few WARN so that we would notice
>>> if this every occurred in the wild; it has. Sadly this means we need to
>>> replace those WARNs with the proper SIGBUS to the offending clients
>>> instead.
>>
>> How does it happen? Frame buffer?
>
> Ignoring the issue of -EIO since patches to fix that path also haven't
> landed, the primary cause is through binding the userptr to a scanout
> (framebuffer). This is not recommended usage for userptr since the CPU
> view is then incoherent, but not impossible.
>
>>> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
>>> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>>> Cc: Michał Winiarski <michal.winiarski@intel.com>
>>> ---
>>> drivers/gpu/drm/i915/i915_gem_userptr.c | 41 +++++++++++++++++++++++++++++----
>>> 1 file changed, 37 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/i915_gem_userptr.c b/drivers/gpu/drm/i915/i915_gem_userptr.c
>>> index f75d90118888..efb404b9fe69 100644
>>> --- a/drivers/gpu/drm/i915/i915_gem_userptr.c
>>> +++ b/drivers/gpu/drm/i915/i915_gem_userptr.c
>>> @@ -81,11 +81,44 @@ static void __cancel_userptr__worker(struct work_struct *work)
>>
>> This line is a reminder the previous series still hasn't landed. I
>> think it was all r-b-ed, with only my request to not rely on
>> release_pages (or something) handle negative and zero page count.
>>
>>> was_interruptible = dev_priv->mm.interruptible;
>>> dev_priv->mm.interruptible = false;
>>>
>>> - list_for_each_entry_safe(vma, tmp, &obj->vma_list, obj_link) {
>>> - int ret = i915_vma_unbind(vma);
>>> - WARN_ON(ret && ret != -EIO);
>>> + list_for_each_entry_safe(vma, tmp, &obj->vma_list, obj_link)
>>> + i915_vma_unbind(vma);
>>> + if (i915_gem_object_put_pages(obj)) {
>>> + struct task_struct *p;
>>> +
>>> + DRM_ERROR("Unable to revoke ownership by userptr of"
>>> + " invalidated address range, sending SIGBUS"
>>> + " to attached clients.\n");
>>> +
>>> + rcu_read_lock();
>>> + for_each_process(p) {
>>
>> I don't think this is safe this without holding the tasklist_lock.
>
> Hmm, it's the only lock taken in the oom-killer for sending the signal.
> The list will not change nor will tasks disappear whilst we hold the
> read-lock so it seems sane.
Then I'll say hmm as well. Since I've now seen there is both in use,
with and without holding the tasklist_lock.
I thought that with just rcu_read_lock, nothing prevents another CPU
from obtaining the write tasklist_lock and mess about with it. But maybe
we are talking about some complex locking scheme here? I don't know. Did
not find any documentation on the tasklist_lock..
Regards,
Tvrtko
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-09-24 10:55 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-23 20:07 [PATCH] drm/i915: Convert WARNs during userptr revoke to SIGBUS Chris Wilson
2015-09-24 10:23 ` Tvrtko Ursulin
2015-09-24 10:31 ` Chris Wilson
2015-09-24 10:55 ` Tvrtko Ursulin [this message]
2015-09-28 13:42 ` Daniel Vetter
2015-09-28 13:52 ` Chris Wilson
2015-09-28 14:14 ` Daniel Vetter
2015-10-08 9:45 ` Tvrtko Ursulin
2015-10-09 7:48 ` Daniel Vetter
2015-10-09 8:40 ` Chris Wilson
2015-10-09 8:55 ` Daniel Vetter
2015-10-09 8:59 ` Chris Wilson
2015-10-09 9:03 ` Tvrtko Ursulin
2015-10-09 17:14 ` Daniel Vetter
2015-10-09 17:26 ` Chris Wilson
2015-10-09 18:33 ` Dave Gordon
2015-10-12 9:06 ` Tvrtko Ursulin
2015-10-12 9:31 ` Chris Wilson
2015-10-12 10:10 ` Chris Wilson
2015-10-12 12:59 ` Tvrtko Ursulin
2015-10-13 11:26 ` Daniel Vetter
2015-10-13 11:44 ` Chris Wilson
2015-10-13 12:23 ` Daniel Vetter
2015-10-13 13:09 ` Chris Wilson
2015-10-13 13:39 ` Daniel Vetter
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=5603D69B.5020709@linux.intel.com \
--to=tvrtko.ursulin@linux.intel.com \
--cc=chris@chris-wilson.co.uk \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox