From: Dario Faggioli <dario.faggioli@citrix.com>
To: Quan Xu <quan.xu@intel.com>, jbeulich@suse.com, kevin.tian@intel.com
Cc: feng.wu@intel.com, jun.nakajima@intel.com,
george.dunlap@eu.citrix.com, andrew.cooper3@citrix.com,
xen-devel@lists.xen.org, stefano.stabellini@citrix.com,
suravee.suthikulpanit@amd.com, jinsong.liu@alibaba-inc.com
Subject: Re: [PATCH v6 3/5] IOMMU: Make the pcidevs_lock a recursive one
Date: Fri, 4 Mar 2016 00:59:12 +0100 [thread overview]
Message-ID: <1457049552.2959.493.camel@citrix.com> (raw)
In-Reply-To: <1456929089-17414-4-git-send-email-quan.xu@intel.com>
[-- Attachment #1.1: Type: text/plain, Size: 3155 bytes --]
[I've removed some of the people that shouldn't be involved in this
discussion any longer from the Cc-list]
On Wed, 2016-03-02 at 22:31 +0800, Quan Xu wrote:
> Signed-off-by: Quan Xu <quan.xu@intel.com>
>
So, this patch looks ok to me.
I spotted something, though, that I think needs some attention.
Since I'm jumping on this series only now, if this has been discussed
before and I missed it, sorry for the noise.
> @@ -788,10 +787,10 @@ static bool_t __init
> set_iommu_interrupt_handler(struct amd_iommu *iommu)
> return 0;
> }
>
> - spin_lock_irqsave(&pcidevs_lock, flags);
> + pcidevs_lock();
>
So, spin_lock_irqsave() does:
local_irq_save()
local_save_flags()
local_irq_disable()
_spin_lock()
i.e., it saves the flags and disable interrupts.
pcidevs_lock() does:
spin_lock_recursive()
... //handle recursion
_spin_lock()
i.e., it does not disable interrupts.
And therefore it is possible that we are actually skipping disabling
interrupts (if they're not disabled already), isn't it?
And, of course, the same reasoning --mutatis mutandis-- applies to the
unlock side of things.
> iommu->msi.dev = pci_get_pdev(iommu->seg, PCI_BUS(iommu->bdf),
> PCI_DEVFN2(iommu->bdf));
> - spin_unlock_irqrestore(&pcidevs_lock, flags);
> + pcidevs_unlock();
>
i.e., spin_unlock_irqrestore() restore the flags, including the
interrupt enabled/disabled status, which means it can re-enable the
interrupts or not, depending on whether they were enabled at the time
of the previous spin_lock_irqsave(); pcidevs_unlock() just don't affect
interrupt enabling/disabling at all.
So, if the original code is correct in using
spin_lock_irqsave()/spin_unlock_irqrestore(), I think that we need
_irqsave() and _irqrestore() variants of recursive spinlocks, in order
to deal with this case.
However, from a quick inspection, it looks to me that:
- this can only be called (during initialization), with interrupt
enabled, so least saving & restoring flags shouldn't be necessary
(unless I missed where they can be disabled in the call chain
from iommu_setup() toward set_iommu_interrupt_handler()).
- This protects pci_get_dev(); looking at other places where
pci_get_dev() is called, I don't think it is really necessary to
disable interrupts.
If I'm right, it means that the original code could well have been
using just plain spin_lock() and spin_unlock(), and it would then be
fine to turn them into pcidevs_lock() and pcidevs_unlock(), and so no
need to add more spin_[un]lock_recursive() variants.
That would also mean that the patch is indeed ok, but I'd add a mention
of this in the changelog.
Regards,
Dario
--
<<This happens because I choose it to happen!>> (Raistlin Majere)
-----------------------------------------------------------------
Dario Faggioli, Ph.D, http://about.me/dario.faggioli
Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK)
[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 181 bytes --]
[-- Attachment #2: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-03-03 23:59 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-02 14:31 [PATCH v6 0/5] VT-d Device-TLB flush issue Quan Xu
2016-03-02 14:31 ` [PATCH v6 1/5] IOMMU/MMU: Adjust top level functions for VT-d Device-TLB flush error Quan Xu
2016-03-02 14:31 ` [PATCH v6 2/5] IOMMU/MMU: Adjust low " Quan Xu
2016-03-02 14:31 ` [PATCH v6 3/5] IOMMU: Make the pcidevs_lock a recursive one Quan Xu
2016-03-03 23:59 ` Dario Faggioli [this message]
2016-03-04 2:45 ` Xu, Quan
2016-03-04 9:29 ` Jan Beulich
2016-03-04 11:54 ` Xu, Quan
2016-03-04 13:59 ` Dario Faggioli
2016-03-04 14:09 ` Jan Beulich
2016-03-07 7:05 ` Xu, Quan
2016-03-07 11:14 ` Jan Beulich
2016-03-07 11:23 ` Xu, Quan
2016-03-07 11:36 ` Jan Beulich
2016-03-07 11:42 ` Xu, Quan
2016-03-07 11:49 ` Jan Beulich
2016-03-07 11:55 ` Xu, Quan
2016-03-02 14:31 ` [PATCH v6 4/5] VT-d: Reduce spin timeout to 1ms, which can be boot-time changed Quan Xu
2016-03-04 0:11 ` Dario Faggioli
2016-03-04 9:32 ` Jan Beulich
2016-03-02 14:31 ` [PATCH v6 5/5] VT-d: Fix vt-d Device-TLB flush timeout issue Quan Xu
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=1457049552.2959.493.camel@citrix.com \
--to=dario.faggioli@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=feng.wu@intel.com \
--cc=george.dunlap@eu.citrix.com \
--cc=jbeulich@suse.com \
--cc=jinsong.liu@alibaba-inc.com \
--cc=jun.nakajima@intel.com \
--cc=kevin.tian@intel.com \
--cc=quan.xu@intel.com \
--cc=stefano.stabellini@citrix.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=xen-devel@lists.xen.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).