From: Lizhi Hou <lizhi.hou@amd.com>
To: Felix Gu <ustc.gu@gmail.com>, Min Ma <mamin506@gmail.com>,
Oded Gabbay <ogabbay@kernel.org>,
"Mario Limonciello (AMD)" <superm1@kernel.org>
Cc: <dri-devel@lists.freedesktop.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] accel/amdxdna: Fix memory leak in amdxdna_iommu_alloc()
Date: Thu, 16 Apr 2026 08:58:11 -0700 [thread overview]
Message-ID: <a44e8da0-289e-bd13-db30-d2a614da368e@amd.com> (raw)
In-Reply-To: <20260416-amdxdna-v1-1-30c13008365c@gmail.com>
Applied to drm-misc-next
On 4/16/26 06:37, Felix Gu wrote:
> [You don't often get email from ustc.gu@gmail.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ]
>
> In amdxdna_iommu_alloc(), if iommu_map() fails after successfully
> allocating both iova and cpu_addr, the code jumps to free_iova
> which only frees the iova, leaking the allocated pages.
>
> Fixes: ece3e8980907 ("accel/amdxdna: Allow forcing IOVA-based DMA via module parameter")
> Signed-off-by: Felix Gu <ustc.gu@gmail.com>
> ---
> drivers/accel/amdxdna/amdxdna_iommu.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/accel/amdxdna/amdxdna_iommu.c b/drivers/accel/amdxdna/amdxdna_iommu.c
> index 4626434d4180..a2e8d8ac0901 100644
> --- a/drivers/accel/amdxdna/amdxdna_iommu.c
> +++ b/drivers/accel/amdxdna/amdxdna_iommu.c
> @@ -110,10 +110,12 @@ void *amdxdna_iommu_alloc(struct amdxdna_dev *xdna, size_t size, dma_addr_t *dma
> iova_align(&xdna->iovad, size),
> IOMMU_READ | IOMMU_WRITE, GFP_KERNEL);
> if (ret)
> - goto free_iova;
> + goto free_cpu_addr;
>
> return cpu_addr;
>
> +free_cpu_addr:
> + free_pages((unsigned long)cpu_addr, get_order(size));
> free_iova:
> __free_iova(&xdna->iovad, iova);
> return ERR_PTR(ret);
>
> ---
> base-commit: 936c21068d7ade00325e40d82bfd2f3f29d9f659
> change-id: 20260416-amdxdna-f46d045130aa
>
> Best regards,
> --
> Felix Gu <ustc.gu@gmail.com>
>
prev parent reply other threads:[~2026-04-16 15:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-16 13:37 [PATCH] accel/amdxdna: Fix memory leak in amdxdna_iommu_alloc() Felix Gu
2026-04-16 15:24 ` Lizhi Hou
2026-04-16 15:58 ` Lizhi Hou [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=a44e8da0-289e-bd13-db30-d2a614da368e@amd.com \
--to=lizhi.hou@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mamin506@gmail.com \
--cc=ogabbay@kernel.org \
--cc=superm1@kernel.org \
--cc=ustc.gu@gmail.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