Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1581042
| From | okaya@codeaurora.org |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 2/2] iommu: add warning when sharing groups |
| Date | 2017-02-15 05:00 +0100 |
| Message-ID | <taYV3-2vE-1@gated-at.bofh.it> (permalink) |
| References | <taSPE-72f-3@gated-at.bofh.it> <taSPE-72f-1@gated-at.bofh.it> <taVaN-8vV-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 2017-02-14 18:51, Alex Williamson wrote: > On Tue, 14 Feb 2017 16:25:22 -0500 > Sinan Kaya <okaya@codeaurora.org> wrote: > >> The ACS requirement has been obscured in the current code and is only >> known by certain individuals who happen to read the code. Print out a >> warning with ACS path failure when ACS requirement is not met. >> >> Signed-off-by: Sinan Kaya <okaya@codeaurora.org> >> --- >> drivers/iommu/iommu.c | 3 +++ >> 1 file changed, 3 insertions(+) >> >> diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c >> index dbe7f65..049ee0a 100644 >> --- a/drivers/iommu/iommu.c >> +++ b/drivers/iommu/iommu.c >> @@ -811,6 +811,9 @@ struct iommu_group *pci_device_group(struct device >> *dev) >> if (IS_ERR(group)) >> return NULL; >> >> + if (pci_is_root_bus(bus)) >> + dev_warn_once(&pdev->dev, "using shared group due to ACS path >> failure\n"); >> + >> return group; >> } >> > > The premise here is flawed. An IOMMU group based at the root bus > doesn't necessarily imply a lack of ACS. There are devices on root > buses, integrated endpoints and root ports. Naturally an IOMMU group > for these devices needs to be based at the root bus. Additionally, > there can be IOMMU groups developed around a lack of ACS that don't > intersect with the root bus. Since this is a warn_once, the false > positives for root bus devices are going to be enumerated first. On an > Intel system there's typically a device as 00.0 that will always be > pointlessly listed first. Also, it's not clear that grouping devices > together is always wrong, as Robin pointed out in the EHCI/OHCI > example. Lack of ACS on downtream ports is likely to cause problems, > especially if that downstream port exposes a slot. Maybe that would be > a good place to start. Also, what is someone supposed to do when they > see this error? If we can hope they'll look for the error in the code > (unlikely) a big comment with useful external links might be > necessary. Based on how easily vendors ignore kernel warnings, I'm > dubious there's any value to this path though. Thanks, Maybe, a better solution would be to add some sentences into vfio.txt documentation. I'm ready to drop this patch. I just don't want ACS requirement to be hidden between the source code. Would you be willing to do that? I know I read all pci and vfio documents in the past. I could have captured this requirement if it was there. > > Alex
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 2/2] iommu: add warning when sharing groups Sinan Kaya <okaya@codeaurora.org> - 2017-02-14 22:30 +0100
Re: [PATCH 2/2] iommu: add warning when sharing groups Alex Williamson <alex.williamson@redhat.com> - 2017-02-15 01:00 +0100
Re: [PATCH 2/2] iommu: add warning when sharing groups okaya@codeaurora.org - 2017-02-15 05:00 +0100
Re: [PATCH 2/2] iommu: add warning when sharing groups Alex Williamson <alex.williamson@redhat.com> - 2017-02-15 20:40 +0100
Re: [PATCH 2/2] iommu: add warning when sharing groups Sinan Kaya <okaya@codeaurora.org> - 2017-02-15 22:50 +0100
Re: [PATCH 2/2] iommu: add warning when sharing groups Sinan Kaya <okaya@codeaurora.org> - 2017-02-16 23:20 +0100
csiph-web