Searched refs:old_memmap (Results 1 – 3 of 3) sorted by relevance
/arch/x86/platform/efi/ |
D | memmap.c | 161 void __init efi_memmap_insert(struct efi_memory_map *old_memmap, void *buf, in efi_memmap_insert() argument 185 for (old = old_memmap->map, new = buf; in efi_memmap_insert() 186 old < old_memmap->map_end; in efi_memmap_insert() 187 old += old_memmap->desc_size, new += old_memmap->desc_size) { in efi_memmap_insert() 190 memcpy(new, old, old_memmap->desc_size); in efi_memmap_insert() 205 new += old_memmap->desc_size; in efi_memmap_insert() 206 memcpy(new, old, old_memmap->desc_size); in efi_memmap_insert() 218 new += old_memmap->desc_size; in efi_memmap_insert() 219 memcpy(new, old, old_memmap->desc_size); in efi_memmap_insert() 226 new += old_memmap->desc_size; in efi_memmap_insert() [all …]
|
D | efi.c | 563 static void *realloc_pages(void *old_memmap, int old_shift) in realloc_pages() argument 574 if (!old_memmap) in realloc_pages() 577 memcpy(ret, old_memmap, PAGE_SIZE << old_shift); in realloc_pages() 580 free_pages((unsigned long)old_memmap, old_shift); in realloc_pages()
|
/arch/x86/include/asm/ |
D | efi.h | 417 extern void __init efi_memmap_insert(struct efi_memory_map *old_memmap,
|