]> git.sur5r.net Git - u-boot/commitdiff
efi_loader: fix bug in efi_get_memory_map
authorRob Clark <robdclark@gmail.com>
Wed, 26 Jul 2017 18:34:05 +0000 (14:34 -0400)
committerAlexander Graf <agraf@suse.de>
Wed, 26 Jul 2017 20:09:49 +0000 (22:09 +0200)
When booting shim -> fallback -> shim -> grub -> linux the memory map is
a bit larger than the size linux passes in on the first call.  But in
the EFI_BUFFER_TOO_SMALL case we were not passing back the updated size
to linux so it would loop forever.

Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
lib/efi_loader/efi_memory.c

index f59e3ea32788880eebf3059d306587b00a062681..9e079f1fa3a66cc301cd1bf039b7896f97f473f4 100644 (file)
@@ -407,11 +407,11 @@ efi_status_t efi_get_memory_map(unsigned long *memory_map_size,
 
        map_size = map_entries * sizeof(struct efi_mem_desc);
 
+       *memory_map_size = map_size;
+
        if (provided_map_size < map_size)
                return EFI_BUFFER_TOO_SMALL;
 
-       *memory_map_size = map_size;
-
        if (descriptor_size)
                *descriptor_size = sizeof(struct efi_mem_desc);