[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200218171454.GA7067@infradead.org>
Date: Tue, 18 Feb 2020 09:14:54 -0800
From: Christoph Hellwig <hch@...radead.org>
To: Joerg Roedel <joro@...tes.org>
Cc: Lu Baolu <baolu.lu@...ux.intel.com>,
David Woodhouse <dwmw2@...radead.org>, jroedel@...e.de,
iommu@...ts.linux-foundation.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/5] iommu/vt-d: Add attach_deferred() helper
> +static bool attach_deferred(struct device *dev)
> +{
> + return dev->archdata.iommu == DEFER_DEVICE_DOMAIN_INFO;
> +}
This is not a very useful helper.
> +
> /**
> * is_downstream_to_pci_bridge - test if a device belongs to the PCI
> * sub-hierarchy of a candidate PCI-PCI bridge
> @@ -2510,8 +2515,7 @@ struct dmar_domain *find_domain(struct device *dev)
> {
> struct device_domain_info *info;
>
> - if (unlikely(dev->archdata.iommu == DEFER_DEVICE_DOMAIN_INFO ||
> - dev->archdata.iommu == DUMMY_DEVICE_DOMAIN_INFO))
> + if (unlikely(attach_deferred(dev) || iommu_dummy(dev)))
> return NULL;
I'd rather kill the iommu_dummy helper as well. And IIRC I have an
outstanding series somewhere that does just that..
Powered by blists - more mailing lists