Searched refs:old_memmap (Results 1 – 3 of 3) sorted by relevance
| /Linux-v5.4/drivers/firmware/efi/ |
| D | memmap.c | 257 void __init efi_memmap_insert(struct efi_memory_map *old_memmap, void *buf, in efi_memmap_insert() argument 281 for (old = old_memmap->map, new = buf; in efi_memmap_insert() 282 old < old_memmap->map_end; in efi_memmap_insert() 283 old += old_memmap->desc_size, new += old_memmap->desc_size) { in efi_memmap_insert() 286 memcpy(new, old, old_memmap->desc_size); in efi_memmap_insert() 301 new += old_memmap->desc_size; in efi_memmap_insert() 302 memcpy(new, old, old_memmap->desc_size); in efi_memmap_insert() 314 new += old_memmap->desc_size; in efi_memmap_insert() 315 memcpy(new, old, old_memmap->desc_size); in efi_memmap_insert() 322 new += old_memmap->desc_size; in efi_memmap_insert() [all …]
|
| /Linux-v5.4/arch/x86/platform/efi/ |
| D | efi.c | 680 static void *realloc_pages(void *old_memmap, int old_shift) in realloc_pages() argument 691 if (!old_memmap) in realloc_pages() 694 memcpy(ret, old_memmap, PAGE_SIZE << old_shift); in realloc_pages() 697 free_pages((unsigned long)old_memmap, old_shift); in realloc_pages()
|
| /Linux-v5.4/include/linux/ |
| D | efi.h | 1066 extern void __init efi_memmap_insert(struct efi_memory_map *old_memmap,
|