Skip to content

Commit e89ef66

Browse files
MJNowakowskiralfbaechle
authored andcommitted
MIPS: init: Ensure reserved memory regions are not added to bootmem
Memories managed through boot_mem_map are generally expected to define non-crossing areas. However, if part of a larger memory block is marked as reserved, it would still be added to bootmem allocator as an available block and could end up being overwritten by the allocator. Prevent this by explicitly marking the memory as reserved it if exists in the range used by bootmem allocator. Signed-off-by: Marcin Nowakowski <[email protected]> Cc: [email protected] Patchwork: https://patchwork.linux-mips.org/patch/14608/ Signed-off-by: Ralf Baechle <[email protected]>
1 parent 269aa43 commit e89ef66

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

arch/mips/kernel/setup.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,10 @@ static void __init bootmem_init(void)
483483
continue;
484484
default:
485485
/* Not usable memory */
486+
if (start > min_low_pfn && end < max_low_pfn)
487+
reserve_bootmem(boot_mem_map.map[i].addr,
488+
boot_mem_map.map[i].size,
489+
BOOTMEM_DEFAULT);
486490
continue;
487491
}
488492

0 commit comments

Comments
 (0)