Skip to content

Commit 2f359ae

Browse files
superna9999nashif
authored andcommitted
mmu: fix virt_region_alloc() unused region free when aligned
In the case where the aligned memory range is on top of the allocated memory range, freeing the 0 sized top unused memory will trigger an assert in the virt_region_free() call since vaddr could be equal to Z_VIRT_REGION_END_ADDR. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
1 parent 513d691 commit 2f359ae

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

kernel/mmu.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,10 @@ static void *virt_region_alloc(size_t size, size_t align)
313313
/* Free the two unused regions */
314314
virt_region_free(UINT_TO_POINTER(dest_addr),
315315
aligned_dest_addr - dest_addr);
316-
virt_region_free(UINT_TO_POINTER(aligned_dest_addr + size),
317-
(dest_addr + alloc_size) - (aligned_dest_addr + size));
316+
if (((dest_addr + alloc_size) - (aligned_dest_addr + size)) > 0) {
317+
virt_region_free(UINT_TO_POINTER(aligned_dest_addr + size),
318+
(dest_addr + alloc_size) - (aligned_dest_addr + size));
319+
}
318320

319321
dest_addr = aligned_dest_addr;
320322
}

0 commit comments

Comments
 (0)