]> git.dujemihanovic.xyz Git - u-boot.git/commit
lmb: Fix the allocation of overlapping memory areas with !LMB_NONE
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Mon, 2 Dec 2024 14:42:45 +0000 (16:42 +0200)
committerIlias Apalodimas <ilias.apalodimas@linaro.org>
Thu, 5 Dec 2024 07:01:44 +0000 (09:01 +0200)
commit1d9aa4a283daa1e609130b5457c9857d62f1d1cb
treea794e67bd9124e280768fe61551f0b1229ec10ac
parent05396fb724551e57ccf6de15ce9f4c0e3128f82c
lmb: Fix the allocation of overlapping memory areas with !LMB_NONE

At the moment the LMB allocator will return 'success' immediately on two
consecutive allocations if the second one is smaller and the flags match
without resizing the reserved area.

This is problematic for two reasons, first of all the new updated
allocation won't update the size and we end up holding more memory than
needed, but most importantly it breaks the EFI SCT tests since EFI
now allocates via LMB.

More specifically when EFI requests a specific address twice with the
EFI_ALLOCATE_ADDRESS flag set, the first allocation will succeed and
update the EFI memory map. Due to the LMB behavior the second allocation
will also succeed but the address ranges are already in the EFI memory
map due the first allocation. EFI will then fail to update the memory map,
returning EFI_OUT_OF_RESOURCES instead of EFI_NOT_FOUND which break EFI
conformance.

So let's remove the fast check with is problematic anyway and leave LMB
resize and calculate address properly. LMB will now
- try to resize the reservations for LMB_NONE
- return -1 if the memory is not LMB_NONE and already reserved

The LMB code needs some cleanup in that part, but since we are close to
2025.01 do the easy fix and plan to refactor it later.
Also update the dm tests with the new behavior.

Fixes: commit 22f2c9ed9f53 ("efi: memory: use the lmb API's for allocating and freeing memory")
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
lib/lmb.c
test/lib/lmb.c