mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 01:44:34 +00:00
lmb: Correctly unmap and free memory on errors
We never free and unmap the memory on errors and we never unmap it when
freeing it. The latter won't cause any problems even on sandbox, but for
consistency always use unmap_sysmem()
Fixes: commit 22f2c9ed9f
("efi: memory: use the lmb API's for allocating and freeing memory")
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
9c792ab336
commit
967d57ab59
1 changed files with 10 additions and 5 deletions
|
@ -451,7 +451,7 @@ efi_status_t efi_allocate_pages(enum efi_allocate_type type,
|
|||
enum efi_memory_type memory_type,
|
||||
efi_uintn_t pages, uint64_t *memory)
|
||||
{
|
||||
u64 len;
|
||||
u64 efi_addr, len;
|
||||
uint flags;
|
||||
efi_status_t ret;
|
||||
phys_addr_t addr;
|
||||
|
@ -499,14 +499,17 @@ efi_status_t efi_allocate_pages(enum efi_allocate_type type,
|
|||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
addr = (u64)(uintptr_t)map_sysmem(addr, 0);
|
||||
efi_addr = (u64)(uintptr_t)map_sysmem(addr, 0);
|
||||
/* Reserve that map in our memory maps */
|
||||
ret = efi_add_memory_map_pg(addr, pages, memory_type, true);
|
||||
if (ret != EFI_SUCCESS)
|
||||
ret = efi_add_memory_map_pg(efi_addr, pages, memory_type, true);
|
||||
if (ret != EFI_SUCCESS) {
|
||||
/* Map would overlap, bail out */
|
||||
lmb_free_flags(addr, (u64)pages << EFI_PAGE_SHIFT, flags);
|
||||
unmap_sysmem((void *)(uintptr_t)efi_addr);
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
*memory = addr;
|
||||
*memory = efi_addr;
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@ -546,6 +549,8 @@ efi_status_t efi_free_pages(uint64_t memory, efi_uintn_t pages)
|
|||
if (status)
|
||||
return EFI_NOT_FOUND;
|
||||
|
||||
unmap_sysmem((void *)(uintptr_t)memory);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue