[PATCH] arm64/mm: Delete __init region from memblock.reserved

From: Rong Qianfeng
Date: Fri Aug 30 2024 - 04:00:56 EST


If CONFIG_ARCH_KEEP_MEMBLOCK is enabled, the memory information in
memblock will be retained. We release the __init memory here, and
we should also delete the corresponding region in memblock.reserved.

Signed-off-by: Rong Qianfeng <rongqianfeng@xxxxxxxx>
---
arch/arm64/mm/init.c | 7 +++++++
1 file changed, 7 insertions(+)

diff --git a/arch/arm64/mm/init.c b/arch/arm64/mm/init.c
index bfb10969cbf0..99cfa217e905 100644
--- a/arch/arm64/mm/init.c
+++ b/arch/arm64/mm/init.c
@@ -402,6 +402,13 @@ void __init mem_init(void)

void free_initmem(void)
{
+ if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK)) {
+ unsigned long aligned_begin = ALIGN_DOWN((u64)__init_begin, PAGE_SIZE);
+ unsigned long aligned_end = ALIGN((u64)__init_end, PAGE_SIZE);
+
+ memblock_free((void *)aligned_begin, aligned_end - aligned_begin);
+ }
+
free_reserved_area(lm_alias(__init_begin),
lm_alias(__init_end),
POISON_FREE_INITMEM, "unused kernel");
--
2.39.0