From: Marek Szyprowski <m.szyprowski@samsung.com>
To: Petr Tesarik <ptesarik@suse.com>, Robin Murphy <robin.murphy@arm.com>
Cc: iommu@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/1] dma-direct: fix use of max_pfn
Date: Thu, 30 Apr 2026 08:22:44 +0200 [thread overview]
Message-ID: <3ba1efbb-abde-41a9-9090-e70fcde362ea@samsung.com> (raw)
In-Reply-To: <20260410113506.262579-1-ptesarik@suse.com>
On 10.04.2026 13:35, Petr Tesarik wrote:
> Calculate the correct physical address of the last byte of memory. Since
> max_pfn is in fact "the PFN of the first page after the highest system RAM
> in physical address space", the highest address that might be used for a
> DMA buffer is one byte below max_pfn << PAGE_SHIFT.
>
> This fix is unlikely to make any difference in practice. It's just that the
> current formula is slightly confusing.
>
> Signed-off-by: Petr Tesarik <ptesarik@suse.com>
Applied to dma-mapping-fixes, thanks!
> ---
> kernel/dma/direct.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/kernel/dma/direct.c b/kernel/dma/direct.c
> index 8f43a930716d4..fefa6c4ac467f 100644
> --- a/kernel/dma/direct.c
> +++ b/kernel/dma/direct.c
> @@ -39,7 +39,7 @@ static inline struct page *dma_direct_to_page(struct device *dev,
>
> u64 dma_direct_get_required_mask(struct device *dev)
> {
> - phys_addr_t phys = (phys_addr_t)(max_pfn - 1) << PAGE_SHIFT;
> + phys_addr_t phys = ((phys_addr_t)max_pfn << PAGE_SHIFT) - 1;
> u64 max_dma = phys_to_dma_direct(dev, phys);
>
> return (1ULL << (fls64(max_dma) - 1)) * 2 - 1;
> @@ -540,7 +540,7 @@ int dma_direct_mmap(struct device *dev, struct vm_area_struct *vma,
>
> int dma_direct_supported(struct device *dev, u64 mask)
> {
> - u64 min_mask = (max_pfn - 1) << PAGE_SHIFT;
> + u64 min_mask = ((u64)max_pfn << PAGE_SHIFT) - 1;
>
> /*
> * Because 32-bit DMA masks are so common we expect every architecture
Best regards
--
Marek Szyprowski, PhD
Samsung R&D Institute Poland
prev parent reply other threads:[~2026-04-30 6:22 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20260410113518eucas1p2b4149df13e7716f6f05710b577b37f1a@eucas1p2.samsung.com>
2026-04-10 11:35 ` [PATCH 1/1] dma-direct: fix use of max_pfn Petr Tesarik
2026-04-30 6:22 ` Marek Szyprowski [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=3ba1efbb-abde-41a9-9090-e70fcde362ea@samsung.com \
--to=m.szyprowski@samsung.com \
--cc=iommu@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=ptesarik@suse.com \
--cc=robin.murphy@arm.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