All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode
@ 2023-02-08 18:18 Jacob Pan
  2023-02-09  2:09 ` Tian, Kevin
  0 siblings, 1 reply; 3+ messages in thread
From: Jacob Pan @ 2023-02-08 18:18 UTC (permalink / raw)
  To: LKML, iommu, Lu Baolu, Joerg Roedel
  Cc: David Woodhouse, Raj Ashok, Tian, Kevin, Yi Liu, sukumar.ghorai,
	Jacob Pan, stable, Robin Murphy, Sanjay Kumar

Intel IOMMU driver implements IOTLB flush queue with domain selective
or PASID selective invalidations. In this case there's no need to track
IOVA page range and sync IOTLBs, which may cause significant performance
hit.

This patch adds a check to avoid IOVA gather page and IOTLB sync for
the lazy path.

The performance difference on Sapphire Rapids 100Gb NIC is improved by
the following (as measured by iperf send):

w/o this fix~48 Gbits/s. with this fix ~54 Gbits/s

Cc: <stable@vger.kernel.org>
Fixes: 2a2b8eaa5b25 ("iommu: Handle freelists when using deferred flushing in iommu drivers")
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Tested-by: Sanjay Kumar <sanjay.k.kumar@intel.com>
Signed-off-by: Sanjay Kumar <sanjay.k.kumar@intel.com>
Signed-off-by: Jacob Pan <jacob.jun.pan@linux.intel.com>
---
v2: use helper function iommu_iotlb_gather_queued() instead of open
coding
---
 drivers/iommu/intel/iommu.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c
index 161342e7149d..18265fa07828 100644
--- a/drivers/iommu/intel/iommu.c
+++ b/drivers/iommu/intel/iommu.c
@@ -4348,7 +4348,13 @@ static size_t intel_iommu_unmap(struct iommu_domain *domain,
 	if (dmar_domain->max_addr == iova + size)
 		dmar_domain->max_addr = iova;
 
-	iommu_iotlb_gather_add_page(domain, gather, iova, size);
+	/*
+	 * We do not use page-selective IOTLB invalidation in flush queue,
+	 * There is no need to track page and sync iotlb. Domain-selective or
+	 * PASID-selective validation are used in the flush queue.
+	 */
+	if (!iommu_iotlb_gather_queued(gather))
+		iommu_iotlb_gather_add_page(domain, gather, iova, size);
 
 	return size;
 }
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH v2] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode
  2023-02-08 18:18 [PATCH v2] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode Jacob Pan
@ 2023-02-09  2:09 ` Tian, Kevin
  2023-02-09 17:43   ` Jacob Pan
  0 siblings, 1 reply; 3+ messages in thread
From: Tian, Kevin @ 2023-02-09  2:09 UTC (permalink / raw)
  To: Jacob Pan, LKML, iommu, Lu Baolu, Joerg Roedel
  Cc: David Woodhouse, Raj, Ashok, Liu, Yi L, Ghorai, Sukumar, stable,
	Robin Murphy, Kumar, Sanjay K

> From: Jacob Pan <jacob.jun.pan@linux.intel.com>
> Sent: Thursday, February 9, 2023 2:19 AM
> 
> -	iommu_iotlb_gather_add_page(domain, gather, iova, size);
> +	/*
> +	 * We do not use page-selective IOTLB invalidation in flush queue,
> +	 * There is no need to track page and sync iotlb. Domain-selective or

"in flush queue, so there is ..."

> +	 * PASID-selective validation are used in the flush queue.

the last sentence can be removed. same meaning as the first one.

> +	 */
> +	if (!iommu_iotlb_gather_queued(gather))
> +		iommu_iotlb_gather_add_page(domain, gather, iova, size);
> 

Reviewed-by: Kevin Tian <kevin.tian@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode
  2023-02-09  2:09 ` Tian, Kevin
@ 2023-02-09 17:43   ` Jacob Pan
  0 siblings, 0 replies; 3+ messages in thread
From: Jacob Pan @ 2023-02-09 17:43 UTC (permalink / raw)
  To: Tian, Kevin
  Cc: LKML, iommu, Lu Baolu, Joerg Roedel, David Woodhouse, Raj, Ashok,
	Liu, Yi L, Ghorai, Sukumar, stable, Robin Murphy, Kumar,
	Sanjay K, jacob.jun.pan

Hi Kevin,

On Thu, 9 Feb 2023 02:09:47 +0000, "Tian, Kevin" <kevin.tian@intel.com>
wrote:

> > From: Jacob Pan <jacob.jun.pan@linux.intel.com>
> > Sent: Thursday, February 9, 2023 2:19 AM
> > 
> > -	iommu_iotlb_gather_add_page(domain, gather, iova, size);
> > +	/*
> > +	 * We do not use page-selective IOTLB invalidation in flush
> > queue,
> > +	 * There is no need to track page and sync iotlb.
> > Domain-selective or  
> 
> "in flush queue, so there is ..."
> 
> > +	 * PASID-selective validation are used in the flush queue.  
> 
> the last sentence can be removed. same meaning as the first one.
> 
sounds good.
> > +	 */
> > +	if (!iommu_iotlb_gather_queued(gather))
> > +		iommu_iotlb_gather_add_page(domain, gather, iova,
> > size); 
> 
> Reviewed-by: Kevin Tian <kevin.tian@intel.com>
> 


Thanks,

Jacob

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-02-09 17:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-08 18:18 [PATCH v2] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode Jacob Pan
2023-02-09  2:09 ` Tian, Kevin
2023-02-09 17:43   ` Jacob Pan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.