From: Robin Murphy <robin.murphy@arm.com>
To: Jacob Pan <jacob.jun.pan@linux.intel.com>,
LKML <linux-kernel@vger.kernel.org>,
iommu@lists.linux.dev, Lu Baolu <baolu.lu@linux.intel.com>,
Joerg Roedel <joro@8bytes.org>
Cc: David Woodhouse <dwmw2@infradead.org>,
Raj Ashok <ashok.raj@intel.com>,
"Tian, Kevin" <kevin.tian@intel.com>, Yi Liu <yi.l.liu@intel.com>,
stable@vger.kernel.org, Sanjay Kumar <sanjay.k.kumar@intel.com>
Subject: Re: [PATCH] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode
Date: Mon, 6 Feb 2023 11:05:32 +0000 [thread overview]
Message-ID: <e40cb8c2-1124-4002-75f5-671b4c758b5d@arm.com> (raw)
In-Reply-To: <20230203230417.1287325-1-jacob.jun.pan@linux.intel.com>
On 2023-02-03 23:04, Jacob Pan wrote:
> 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
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
> Cc: <stable@vger.kernel.org>
> 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>
> ---
> 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 b4878c7ac008..705a1c66691a 100644
> --- a/drivers/iommu/intel/iommu.c
> +++ b/drivers/iommu/intel/iommu.c
> @@ -4352,7 +4352,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 (!gather->queued)
> + iommu_iotlb_gather_add_page(domain, gather, iova, size);
>
> return size;
> }
prev parent reply other threads:[~2023-02-06 11:05 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-03 23:04 Jacob Pan
2023-02-04 6:32 ` Baolu Lu
2023-02-06 3:48 ` Tian, Kevin
2023-02-07 6:45 ` Baolu Lu
2023-02-07 9:18 ` Tian, Kevin
2023-02-06 11:20 ` Robin Murphy
2023-02-07 6:42 ` Baolu Lu
2023-02-06 11:05 ` Robin Murphy [this message]
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=e40cb8c2-1124-4002-75f5-671b4c758b5d@arm.com \
--to=robin.murphy@arm.com \
--cc=ashok.raj@intel.com \
--cc=baolu.lu@linux.intel.com \
--cc=dwmw2@infradead.org \
--cc=iommu@lists.linux.dev \
--cc=jacob.jun.pan@linux.intel.com \
--cc=joro@8bytes.org \
--cc=kevin.tian@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sanjay.k.kumar@intel.com \
--cc=stable@vger.kernel.org \
--cc=yi.l.liu@intel.com \
/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
all inboxes | Powered by JetHome®