[PATCH] of: fdt: modify small size memory check

From: Daero Lee
Date: Mon Mar 04 2024 - 09:21:14 EST


Small size memory which is less than 1 PAGE_SIZE after page align
should not be added to memblock.

In this patch, the size check was modified to make it clear.

Signed-off-by: Daero Lee <skseofh@xxxxxxxxx>
---
drivers/of/fdt.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
index bf502ba8da95..9cf844e664b0 100644
--- a/drivers/of/fdt.c
+++ b/drivers/of/fdt.c
@@ -1220,18 +1220,16 @@ int __init early_init_dt_scan_chosen(char *cmdline)
void __init __weak early_init_dt_add_memory_arch(u64 base, u64 size)
{
const u64 phys_offset = MIN_MEMBLOCK_ADDR;
+ u64 abase = PAGE_ALIGN(base), aend = PAGE_ALIGN_DOWN(base + size);

- if (size < PAGE_SIZE - (base & ~PAGE_MASK)) {
+ if((aend - abase) < PAGE_SIZE) {
pr_warn("Ignoring memory block 0x%llx - 0x%llx\n",
base, base + size);
return;
}

- if (!PAGE_ALIGNED(base)) {
- size -= PAGE_SIZE - (base & ~PAGE_MASK);
- base = PAGE_ALIGN(base);
- }
- size &= PAGE_MASK;
+ base = abase;
+ size = (aend - abase) & PAGE_MASK;

if (base > MAX_MEMBLOCK_ADDR) {
pr_warn("Ignoring memory block 0x%llx - 0x%llx\n",
--
2.25.1