mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 21:45:45 +02:00
efi: libstub: drop pointless get_memory_map() call
commitd80ca810f0upstream. Currently, the non-x86 stub code calls get_memory_map() redundantly, given that the data it returns is never used anywhere. So drop the call. Cc: <stable@vger.kernel.org> # v4.14+ Fixes:24d7c494ce("efi/arm-stub: Round up FDT allocation to mapping size") Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
68158654b5
commit
dbdd3b1448
|
|
@ -281,14 +281,6 @@ efi_status_t allocate_new_fdt_and_exit_boot(void *handle,
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Now that we have done our final memory allocation (and free)
|
|
||||||
* we can get the memory map key needed for exit_boot_services().
|
|
||||||
*/
|
|
||||||
status = efi_get_memory_map(&map);
|
|
||||||
if (status != EFI_SUCCESS)
|
|
||||||
goto fail_free_new_fdt;
|
|
||||||
|
|
||||||
status = update_fdt((void *)fdt_addr, fdt_size,
|
status = update_fdt((void *)fdt_addr, fdt_size,
|
||||||
(void *)*new_fdt_addr, MAX_FDT_SIZE, cmdline_ptr,
|
(void *)*new_fdt_addr, MAX_FDT_SIZE, cmdline_ptr,
|
||||||
initrd_addr, initrd_size);
|
initrd_addr, initrd_size);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user