From: Alex Williamson <alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Robin Murphy <robin.murphy-5wv7dgnIgG8@public.gmane.org>
Cc: Sebastian Andrzej Siewior
<bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>,
vinadhy-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v2] iommu/iova: Use raw_cpu_ptr() instead of get_cpu_ptr() for ->fq
Date: Mon, 6 Nov 2017 13:07:26 -0700 [thread overview]
Message-ID: <20171106130726.0685da5b@t450s.home> (raw)
In-Reply-To: <5653117e-7708-de28-f349-ffe5ebf4481d-5wv7dgnIgG8@public.gmane.org>
On Mon, 6 Nov 2017 16:45:11 +0000
Robin Murphy <robin.murphy@arm.com> wrote:
> On 06/11/17 15:43, Alex Williamson wrote:
> > [cc +robin]
> >
> > On Thu, 2 Nov 2017 18:33:50 +0100
> > Sebastian Andrzej Siewior <bigeasy@linutronix.de> wrote:
> >
> >> On 2017-09-21 17:21:40 [+0200], Sebastian Andrzej Siewior wrote:
> >>> get_cpu_ptr() disabled preemption and returns the ->fq object of the
> >>> current CPU. raw_cpu_ptr() does the same except that it not disable
> >>> preemption which means the scheduler can move it to another CPU after it
> >>> obtained the per-CPU object.
> >>> In this case this is not bad because the data structure itself is
> >>> protected with a spin_lock. This change shouldn't matter however on RT
> >>> it does because the sleeping lock can't be accessed with disabled
> >>> preemption.
> >>
> >> Did this make to your tree Jörg?
> >
> > Hi Sebastian,
> >
> > Joerg is out on paternity leave through the end of the year, I'm
> > filling in in the interim. I hadn't looked for patches this far back,
> > so thanks for pointing it out. Robin, any comments? Thanks,
>
> The reasoning seems sound - assuming we can't get preempted once the
> lock is actually taken, the worst side-effect of getting moved to
> another CPU in that slim window looks to be a little bit of lock
> contention. Operating on "someone else's" queue should have no
> correctness impact, and the cmpxchg after the lock is released isn't
> even working on percpu data so doesn't really care anyway.
>
> AFAICS it's more or less the direct equivalent of aaffaa8a3b59
> ("iommu/iova: Don't disable preempt around this_cpu_ptr()"), which seems
> to have been working out OK.
Great, thanks Robin.
Applied to iommu/iova for v4.15. Thanks,
Alex
> >>> Cc: Joerg Roedel <joro@8bytes.org>
> >>> Cc: iommu@lists.linux-foundation.org
> >>> Reported-by: vinadhy@gmail.com
> >>> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
> >>> ---
> >>> On 2017-09-19 11:41:19 [+0200], Joerg Roedel wrote:
> >>>> Hi Sebastian,
> >>> Hi Jörg,
> >>>
> >>>> I moved the flushing to driver/iommu/iova.c to share it with the Intel
> >>>> IOMMU and possibly other drivers too, so this patch does no longer apply
> >>>> to v4.14-rc1. Can you update the patch to these changes?
> >>>
> >>> Sure.
> >>>
> >>> v1…v2: move the change from amd_iommu.c to iova.c
> >>>
> >>> drivers/iommu/iova.c | 4 +---
> >>> 1 file changed, 1 insertion(+), 3 deletions(-)
> >>>
> >>> diff --git a/drivers/iommu/iova.c b/drivers/iommu/iova.c
> >>> index 33edfa794ae9..b30900025c62 100644
> >>> --- a/drivers/iommu/iova.c
> >>> +++ b/drivers/iommu/iova.c
> >>> @@ -570,7 +570,7 @@ void queue_iova(struct iova_domain *iovad,
> >>> unsigned long pfn, unsigned long pages,
> >>> unsigned long data)
> >>> {
> >>> - struct iova_fq *fq = get_cpu_ptr(iovad->fq);
> >>> + struct iova_fq *fq = raw_cpu_ptr(iovad->fq);
> >>> unsigned long flags;
> >>> unsigned idx;
> >>>
> >>> @@ -600,8 +600,6 @@ void queue_iova(struct iova_domain *iovad,
> >>> if (atomic_cmpxchg(&iovad->fq_timer_on, 0, 1) == 0)
> >>> mod_timer(&iovad->fq_timer,
> >>> jiffies + msecs_to_jiffies(IOVA_FQ_TIMEOUT));
> >>> -
> >>> - put_cpu_ptr(iovad->fq);
> >>> }
> >>> EXPORT_SYMBOL_GPL(queue_iova);
> >>>
> >>> --
> >>> 2.14.1
> >>>
> >>
> >> Sebastian
> >> _______________________________________________
> >> iommu mailing list
> >> iommu@lists.linux-foundation.org
> >> https://lists.linuxfoundation.org/mailman/listinfo/iommu
>
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu
prev parent reply other threads:[~2017-11-06 20:07 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-06 10:34 [PATCH] iommu/amd: Use raw_cpu_ptr() instead of get_cpu_ptr() for ->flush_queue Sebastian Andrzej Siewior
[not found] ` <20170906103459.oi2nn7jondjqdo5m-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2017-09-12 2:22 ` Vinod Adhikary
[not found] ` <CABp9dQUcXTAX9ggX+TAMHE2oH0SF8bcu47E=UYG9fgJdKBXEVg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-09-21 15:10 ` Sebastian Andrzej Siewior
2017-09-19 9:41 ` Joerg Roedel
2017-09-21 15:21 ` [PATCH v2] iommu/iova: Use raw_cpu_ptr() instead of get_cpu_ptr() for ->fq Sebastian Andrzej Siewior
2017-11-02 17:33 ` Sebastian Andrzej Siewior
[not found] ` <20171102173349.btd3b2xfklcfopmz-E0PNVn5OA6ohrxcnuTQ+TQ@public.gmane.org>
2017-11-06 15:43 ` Alex Williamson
[not found] ` <20171106084334.639512ea-1yVPhWWZRC1BDLzU/O5InQ@public.gmane.org>
2017-11-06 16:45 ` Robin Murphy
[not found] ` <5653117e-7708-de28-f349-ffe5ebf4481d-5wv7dgnIgG8@public.gmane.org>
2017-11-06 20:07 ` Alex Williamson [this message]
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=20171106130726.0685da5b@t450s.home \
--to=alex.williamson-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org \
--cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=robin.murphy-5wv7dgnIgG8@public.gmane.org \
--cc=vinadhy-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.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;
as well as URLs for NNTP newsgroup(s).