From: Jason Gunthorpe <jgg@nvidia.com>
To: Baolu Lu <baolu.lu@linux.intel.com>
Cc: iommu@lists.linux.dev, Joerg Roedel <joro@8bytes.org>,
llvm@lists.linux.dev, Nathan Chancellor <nathan@kernel.org>,
Nick Desaulniers <ndesaulniers@google.com>,
Miguel Ojeda <ojeda@kernel.org>,
Robin Murphy <robin.murphy@arm.com>, Tom Rix <trix@redhat.com>,
Will Deacon <will@kernel.org>, Kevin Tian <kevin.tian@intel.com>,
Nicolin Chen <nicolinc@nvidia.com>
Subject: Re: [PATCH v3 13/17] iommu: Revise iommu_group_alloc_default_domain()
Date: Thu, 6 Apr 2023 08:34:46 -0300 [thread overview]
Message-ID: <ZC6uVivTESGPKkHu@nvidia.com> (raw)
In-Reply-To: <c7d5273e-5621-b681-bd6f-2e044e6db6ff@linux.intel.com>
On Thu, Apr 06, 2023 at 11:40:12AM +0800, Baolu Lu wrote:
> On 4/6/23 7:38 AM, Jason Gunthorpe wrote:
> > diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
> > index 8623d3edc61014..5f6aecfd92c657 100644
> > --- a/drivers/iommu/iommu.c
> > +++ b/drivers/iommu/iommu.c
> > @@ -91,8 +91,9 @@ static const char * const iommu_group_resv_type_string[] = {
> > static int iommu_bus_notifier(struct notifier_block *nb,
> > unsigned long action, void *data);
> > -static int iommu_alloc_default_domain(struct iommu_group *group,
> > - struct device *dev);
> > +static struct iommu_domain *
> > +iommu_group_alloc_default_domain(struct iommu_group *group, int req_type);
> > +static int iommu_get_def_domain_type(struct device *dev);
> > static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
> > unsigned type);
> > static int __iommu_attach_device(struct iommu_domain *domain,
> > @@ -444,13 +445,16 @@ int iommu_probe_device(struct device *dev)
> > * support default domains, so the return value is not yet
> > * checked.
> > */
> > - iommu_alloc_default_domain(group, dev);
> > - if (group->default_domain) {
> > - iommu_create_device_direct_mappings(group, dev);
> > - ret = __iommu_group_set_domain_internal(
> > - group, group->default_domain,
> > - IOMMU_SET_DOMAIN_WITH_DEFERRED);
> > + group->default_domain = iommu_group_alloc_default_domain(
> > + group, iommu_get_def_domain_type(dev));
> > + if (!group->default_domain) {
> > + ret = -EINVAL;
> > + goto err_unlock;
> > }
>
> There are still some drivers that don't support default domains. It was
> allowed previously, but above seems to change that behavior. The
> iommu_probe_device() fails now on those platforms. Or perhaps I
> overlooked anything?
Blah, yes, this is fixed up in the next patches it is an artifact of
trying to split patches up. Let me think about it
Jason
next prev parent reply other threads:[~2023-04-06 11:34 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-05 23:38 [PATCH v3 00/17] Consolidate the error handling around device attachment Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 01/17] iommu: Replace iommu_group_device_count() with list_count_nodes() Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 02/17] iommu: Add for_each_group_device() Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 03/17] iommu: Make __iommu_group_set_domain() handle error unwind Jason Gunthorpe
2023-04-06 18:08 ` Robin Murphy
2023-04-06 19:09 ` Jason Gunthorpe
2023-04-13 16:47 ` Robin Murphy
2023-04-13 18:39 ` Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 04/17] iommu: Use __iommu_group_set_domain() for __iommu_attach_group() Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 05/17] iommu: Use __iommu_group_set_domain() in iommu_change_dev_def_domain() Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 06/17] iommu: Replace __iommu_group_dma_first_attach() with set_domain Jason Gunthorpe
2023-04-06 15:58 ` Robin Murphy
2023-04-06 19:17 ` Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 07/17] iommu: Make iommu_group_do_dma_first_attach() simpler Jason Gunthorpe
2023-04-06 3:28 ` Baolu Lu
2023-04-06 15:44 ` Robin Murphy
2023-04-06 16:09 ` Jason Gunthorpe
2023-04-06 19:05 ` Robin Murphy
2023-04-05 23:38 ` [PATCH v3 08/17] iommu: Make iommu_group_do_dma_first_attach() work with owned groups Jason Gunthorpe
2023-04-06 16:37 ` Robin Murphy
2023-04-06 19:34 ` Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 09/17] iommu: Fix iommu_probe_device() to attach the right domain Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 10/17] iommu: Do iommu_group_create_direct_mappings() before attach Jason Gunthorpe
2023-04-06 3:14 ` Baolu Lu
2023-04-05 23:38 ` [PATCH v3 11/17] iommu: Remove the assignment of group->domain during default domain alloc Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 12/17] iommu: Consolidate the code to calculate the target default domain type Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 13/17] iommu: Revise iommu_group_alloc_default_domain() Jason Gunthorpe
2023-04-06 3:40 ` Baolu Lu
2023-04-06 11:34 ` Jason Gunthorpe [this message]
2023-04-05 23:38 ` [PATCH v3 14/17] iommu: Consolidate the default_domain setup to one function Jason Gunthorpe
2023-04-06 4:43 ` Baolu Lu
2023-04-05 23:38 ` [PATCH v3 15/17] iommu: Allow IOMMU_RESV_DIRECT to work on ARM Jason Gunthorpe
2023-04-06 3:53 ` Baolu Lu
2023-04-05 23:38 ` [PATCH v3 16/17] iommu: Remove __iommu_group_for_each_dev() Jason Gunthorpe
2023-04-05 23:38 ` [PATCH v3 17/17] iommu: Tidy the control flow in iommu_group_store_type() Jason Gunthorpe
2023-04-07 11:02 ` [PATCH v3 00/17] Consolidate the error handling around device attachment Naresh Kamboju
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=ZC6uVivTESGPKkHu@nvidia.com \
--to=jgg@nvidia.com \
--cc=baolu.lu@linux.intel.com \
--cc=iommu@lists.linux.dev \
--cc=joro@8bytes.org \
--cc=kevin.tian@intel.com \
--cc=llvm@lists.linux.dev \
--cc=nathan@kernel.org \
--cc=ndesaulniers@google.com \
--cc=nicolinc@nvidia.com \
--cc=ojeda@kernel.org \
--cc=robin.murphy@arm.com \
--cc=trix@redhat.com \
--cc=will@kernel.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).