Skip to content
Snippets Groups Projects
Commit 85a6e9b3 authored by Alexander Graf's avatar Alexander Graf
Browse files

efi_loader: Add check for fallback fdt memory reservation


When running bootefi, we allocate new space but never check whether
the allocation succeeded. This patch adds a check so that in case
things go wrong, we at least know they did.

Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent 8d6040c7
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,13 @@ static void *copy_fdt(void *fdt) ...@@ -133,7 +133,13 @@ static void *copy_fdt(void *fdt)
&new_fdt_addr) != EFI_SUCCESS) { &new_fdt_addr) != EFI_SUCCESS) {
/* If we can't put it there, put it somewhere */ /* If we can't put it there, put it somewhere */
new_fdt_addr = (ulong)memalign(4096, fdt_size); new_fdt_addr = (ulong)memalign(4096, fdt_size);
if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages,
&new_fdt_addr) != EFI_SUCCESS) {
printf("ERROR: Failed to reserve space for FDT\n");
return NULL;
}
} }
new_fdt = (void*)(ulong)new_fdt_addr; new_fdt = (void*)(ulong)new_fdt_addr;
memcpy(new_fdt, fdt, fdt_totalsize(fdt)); memcpy(new_fdt, fdt, fdt_totalsize(fdt));
fdt_set_totalsize(new_fdt, fdt_size); fdt_set_totalsize(new_fdt, fdt_size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment