]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - lib/efi_loader/efi_memory.c
efi_loader: Keep memory mapping sorted when splitting an entry
[people/ms/u-boot.git] / lib / efi_loader / efi_memory.c
index d3a2ffdac68ad87c75ef8d192dd397bd7aefea30..742bc9084ffc32678649188be807ed39c662b8ed 100644 (file)
@@ -135,7 +135,8 @@ static int efi_mem_carve_out(struct efi_mem_list *map,
        newmap->desc = map->desc;
        newmap->desc.physical_start = carve_start;
        newmap->desc.num_pages = (map_end - carve_start) >> EFI_PAGE_SHIFT;
-        list_add_tail(&newmap->link, &efi_mem);
+       /* Insert before current entry (descending address order) */
+       list_add_tail(&newmap->link, &map->link);
 
        /* Shrink the map to [ map_start ... carve_start ] */
        map_desc->num_pages = (carve_start - map_start) >> EFI_PAGE_SHIFT;