Skip to content

Commit 2dece44

Browse files
labbottwildea01
authored andcommitted
mm/cma: Cleanup highmem check
6b101e2 ("mm/CMA: fix boot regression due to physical address of high_memory") added checks to use __pa_nodebug on x86 since CONFIG_DEBUG_VIRTUAL complains about high_memory not being linearlly mapped. arm64 is now getting support for CONFIG_DEBUG_VIRTUAL as well. Rather than add an explosion of arches to the #ifdef, switch to an alternate method to calculate the physical start of highmem using the page before highmem starts. This avoids the need for the #ifdef and extra __pa_nodebug calls. Reviewed-by: Mark Rutland <mark.rutland@arm.com> Tested-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Laura Abbott <labbott@redhat.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
1 parent fa5b6ec commit 2dece44

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

mm/cma.c

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -235,18 +235,13 @@ int __init cma_declare_contiguous(phys_addr_t base,
235235
phys_addr_t highmem_start;
236236
int ret = 0;
237237

238-
#ifdef CONFIG_X86
239238
/*
240-
* high_memory isn't direct mapped memory so retrieving its physical
241-
* address isn't appropriate. But it would be useful to check the
242-
* physical address of the highmem boundary so it's justifiable to get
243-
* the physical address from it. On x86 there is a validation check for
244-
* this case, so the following workaround is needed to avoid it.
239+
* We can't use __pa(high_memory) directly, since high_memory
240+
* isn't a valid direct map VA, and DEBUG_VIRTUAL will (validly)
241+
* complain. Find the boundary by adding one to the last valid
242+
* address.
245243
*/
246-
highmem_start = __pa_nodebug(high_memory);
247-
#else
248-
highmem_start = __pa(high_memory);
249-
#endif
244+
highmem_start = __pa(high_memory - 1) + 1;
250245
pr_debug("%s(size %pa, base %pa, limit %pa alignment %pa)\n",
251246
__func__, &size, &base, &limit, &alignment);
252247

0 commit comments

Comments
 (0)