From: Robin Murphy <robin.murphy@arm.com>
To: Logan Odell <loganodell@google.com>, joro@8bytes.org, will@kernel.org
Cc: iommu@lists.linux.dev, linux-kernel@vger.kernel.org,
mclapinski@google.com, skhawaja@google.com
Subject: Re: [PATCH v3] iommu/iova: Move CPU magazine init to first insert
Date: Mon, 27 Jul 2026 18:14:29 +0100 [thread overview]
Message-ID: <9ca5da69-50da-4583-97ae-986b90b5ef16@arm.com> (raw)
In-Reply-To: <20260727155720.2692587-1-loganodell@google.com>
On 27/07/2026 4:57 pm, Logan Odell wrote:
> A large amount of memory may be allocated for these magazines on
> machines with a lot of IOMMU groups and CPU cores. Not all may be used
> as some devices may be unused or be bound to drivers that do not use the
> DMA-API. Furthermore, some drivers may not use all levels or CPUs.
>
> Move the initialization of the loaded and prev magazines for each CPU on
> the first attempt to try to insert a freed IOVA to them.
>
> Signed-off-by: Logan Odell <loganodell@google.com>
> Signed-off-by: Michal Clapinski <mclapinski@google.com>
> ---
> v2: only rebase
> v3: Combine the initilaization logic with new magazine logic in __iova_rcache_insert
LGTM,
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Although as a process nit, since you've now taken back custody of the
patch to make this update, technically you should either add your
sign-off a second time after Michal's, or perhaps more neatly, give
Michal a Co-developed-by and swap the sign-offs[1].
Thanks,
Robin.
[1]
https://www.kernel.org/doc/html/latest/process/submitting-patches.html#when-to-use-acked-by-cc-and-co-developed-by
> ---
>
> Change-Id: I987b6dfb2b1125d8da8618fff540f315b99bad13
> ---
> drivers/iommu/iova.c | 29 +++++++++++++++--------------
> 1 file changed, 15 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/iommu/iova.c b/drivers/iommu/iova.c
> index 021daf6528de..82d52eb12e4c 100644
> --- a/drivers/iommu/iova.c
> +++ b/drivers/iommu/iova.c
> @@ -621,6 +621,9 @@ iova_magazine_free_pfns(struct iova_magazine *mag, struct iova_domain *iovad)
> unsigned long flags;
> int i;
>
> + if (!mag)
> + return;
> +
> spin_lock_irqsave(&iovad->iova_rbtree_lock, flags);
>
> for (i = 0 ; i < mag->size; ++i) {
> @@ -739,12 +742,6 @@ int iova_domain_init_rcaches(struct iova_domain *iovad)
> cpu_rcache = per_cpu_ptr(rcache->cpu_rcaches, cpu);
>
> spin_lock_init(&cpu_rcache->lock);
> - cpu_rcache->loaded = iova_magazine_alloc(GFP_KERNEL);
> - cpu_rcache->prev = iova_magazine_alloc(GFP_KERNEL);
> - if (!cpu_rcache->loaded || !cpu_rcache->prev) {
> - ret = -ENOMEM;
> - goto out_err;
> - }
> }
> }
>
> @@ -777,19 +774,23 @@ static bool __iova_rcache_insert(struct iova_domain *iovad,
> cpu_rcache = raw_cpu_ptr(rcache->cpu_rcaches);
> spin_lock_irqsave(&cpu_rcache->lock, flags);
>
> - if (!iova_magazine_full(cpu_rcache->loaded)) {
> + if (cpu_rcache->loaded && !iova_magazine_full(cpu_rcache->loaded)) {
> can_insert = true;
> - } else if (!iova_magazine_full(cpu_rcache->prev)) {
> + } else if (cpu_rcache->prev && !iova_magazine_full(cpu_rcache->prev)) {
> swap(cpu_rcache->prev, cpu_rcache->loaded);
> can_insert = true;
> } else {
> struct iova_magazine *new_mag = iova_magazine_alloc(GFP_ATOMIC);
>
> if (new_mag) {
> - spin_lock(&rcache->lock);
> - iova_depot_push(rcache, cpu_rcache->loaded);
> - spin_unlock(&rcache->lock);
> - schedule_delayed_work(&rcache->work, IOVA_DEPOT_DELAY);
> + if (cpu_rcache->loaded && !cpu_rcache->prev) {
> + cpu_rcache->prev = cpu_rcache->loaded;
> + } else if (cpu_rcache->loaded) {
> + spin_lock(&rcache->lock);
> + iova_depot_push(rcache, cpu_rcache->loaded);
> + spin_unlock(&rcache->lock);
> + schedule_delayed_work(&rcache->work, IOVA_DEPOT_DELAY);
> + }
>
> cpu_rcache->loaded = new_mag;
> can_insert = true;
> @@ -831,9 +832,9 @@ static unsigned long __iova_rcache_get(struct iova_rcache *rcache,
> cpu_rcache = raw_cpu_ptr(rcache->cpu_rcaches);
> spin_lock_irqsave(&cpu_rcache->lock, flags);
>
> - if (!iova_magazine_empty(cpu_rcache->loaded)) {
> + if (cpu_rcache->loaded && !iova_magazine_empty(cpu_rcache->loaded)) {
> has_pfn = true;
> - } else if (!iova_magazine_empty(cpu_rcache->prev)) {
> + } else if (cpu_rcache->prev && !iova_magazine_empty(cpu_rcache->prev)) {
> swap(cpu_rcache->prev, cpu_rcache->loaded);
> has_pfn = true;
> } else {
next prev parent reply other threads:[~2026-07-27 17:14 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-27 15:57 [PATCH v3] iommu/iova: Move CPU magazine init to first insert Logan Odell
2026-07-27 17:14 ` Robin Murphy [this message]
2026-07-30 12:55 ` Jörg Rödel
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=9ca5da69-50da-4583-97ae-986b90b5ef16@arm.com \
--to=robin.murphy@arm.com \
--cc=iommu@lists.linux.dev \
--cc=joro@8bytes.org \
--cc=linux-kernel@vger.kernel.org \
--cc=loganodell@google.com \
--cc=mclapinski@google.com \
--cc=skhawaja@google.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