From: Stephen Warren Date: Thu, 30 Aug 2018 21:43:45 +0000 (-0600) Subject: Revert "Revert "efi_loader: efi_allocate_pages is too restrictive"" X-Git-Tag: v2018.11-rc1~82^2~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14deb5e628dd365d63002ebf0d85d2ea9804bad2;p=platform%2Fkernel%2Fu-boot.git Revert "Revert "efi_loader: efi_allocate_pages is too restrictive"" This reverts commit ccfc78b820e5e431c5bd73b072e7536a972e1710. Now that the underlying issue is fixed, we can revert the revert and hence restore the original EFI code. Signed-off-by: Stephen Warren Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/efi_memory.c b/lib/efi_loader/efi_memory.c index 0ac4ff5..4f8cb54 100644 --- a/lib/efi_loader/efi_memory.c +++ b/lib/efi_loader/efi_memory.c @@ -303,7 +303,7 @@ efi_status_t efi_allocate_pages(int type, int memory_type, switch (type) { case EFI_ALLOCATE_ANY_PAGES: /* Any page */ - addr = efi_find_free_memory(len, gd->start_addr_sp); + addr = efi_find_free_memory(len, -1ULL); if (!addr) { r = EFI_NOT_FOUND; break;