Re: [PATCH v2] dma-contiguous: setup default pernuma cma area if not configured explicitly

From: Robin Murphy

Date: Thu Apr 23 2026 - 09:55:09 EST


On 23/04/2026 10:52 am, Feng Tang wrote:
There was a report on a multi-numa-nodes ARM server that when IOMMU is
disabled, the dma_alloc_coherent() function always returns memory from
node 0 even for devices attaching to other nodes, while they can get
local dma memory when IOMMU is on with the same API.

The reason is, when IOMMU is disabled, the dma_alloc_coherent() will
go the direct way and call dma_alloc_contiguous(). The system doesn't
have any explicit cma setting (like per-numa cma), and only has a
default 64MB cma reserved area (on node 0), where kernel will try
first to allocate memory from.

Robin Murphy suggested to setup pernuma cma or disable cma, which did
solve the issue. While there is still concern that for customers
which don't have much kernel knowledge, they could still suffer from
this silently as some architectures enable cma area by default (not
an issue for X86 though, which set CONFIG_CMA_SIZE_MBYTES to 0 by
default) for most Linux distributions.

One thought is to follow the current cma reserving policy for platform
with 'CONFIG_DMA_NUMA_CMA=y', that if the numa cma is not explicitly
configured, set it up according to CONFIG_CMA_SIZE_MBYTES (The
percentage kernel option is not considered yet as the number of NUMA
nodes could be big).

IIRC, the main reason it's still an opt-in is that it doesn't necessarily interact all that well with the default CMA area, and what we definitely don't want to do is unexpectedly start allocating additional CMA areas on systems which don't need nor want them.

I guess what might be ideal would be to rearrange things such that when DMA_NUMA_CMA is enabled, we try to merge the "global" CMA area with a per-node area that can satisfy the necessary size, ZONE_DMA32, etc. constraints, such that unless explicitly configured otherwise, we don't end up making that extra n+1th allocation. Similarly I'm not sure about the usefulness of having two separate types of per-node area, especially given the apparent intent that users only want one _or_ the other, so probably dma_contiguous_numa_area[] should really have just been a generalisation of dma_contiguous_pernuma_area[] in the first place...

I can imagine that work being quite involved though, as all the interaction between default, command line and devicetree/platform controls is sure to be fiddly. As a compromise for now, I think rather than trying to imply a default "cma_pernuma" behaviour, it would be cleaner to instead imply "numa_cma" to only replicate the default area across nodes other than the one which has it already. That then would inherently avoid changing anything for single-node systems; otherwise at the very least any automatic fiddling with pernuma_size_bytes should depend on num_online_nodes() > 1.

Thanks,
Robin.


Suggested-by: Ying Huang <ying.huang@xxxxxxxxxxxxxxxxx>
Signed-off-by: Feng Tang <feng.tang@xxxxxxxxxxxxxxxxx>
---
Changelog:

since v1
* don't use the original way of adding alloc_pages_node()
before trying default cma node (Robin Murphy)

kernel/dma/contiguous.c | 6 ++++++
1 file changed, 6 insertions(+)

diff --git a/kernel/dma/contiguous.c b/kernel/dma/contiguous.c
index c56004d314dc..b2fd6789db85 100644
--- a/kernel/dma/contiguous.c
+++ b/kernel/dma/contiguous.c
@@ -107,6 +107,7 @@ static struct cma *dma_contiguous_numa_area[MAX_NUMNODES];
static phys_addr_t numa_cma_size[MAX_NUMNODES] __initdata;
static struct cma *dma_contiguous_pernuma_area[MAX_NUMNODES];
static phys_addr_t pernuma_size_bytes __initdata;
+static bool numa_cma_configured;
static int __init early_numa_cma(char *p)
{
@@ -135,6 +136,7 @@ static int __init early_numa_cma(char *p)
break;
}
+ numa_cma_configured = true;
return 0;
}
early_param("numa_cma", early_numa_cma);
@@ -142,6 +144,7 @@ early_param("numa_cma", early_numa_cma);
static int __init early_cma_pernuma(char *p)
{
pernuma_size_bytes = memparse(p, &p);
+ numa_cma_configured = true;
return 0;
}
early_param("cma_pernuma", early_cma_pernuma);
@@ -181,6 +184,9 @@ static void __init dma_numa_cma_reserve(void)
continue;
}
+ if (!numa_cma_configured)
+ pernuma_size_bytes = size_bytes;
+
if (pernuma_size_bytes) {
cma = &dma_contiguous_pernuma_area[nid];