Home
last modified time | relevance | path

Searched refs:e820_map (Results 1 – 7 of 7) sorted by relevance

/linux-3.4.99/arch/x86/boot/
Dmemory.c24 struct e820entry *desc = boot_params.e820_map; in detect_memory_e820()
69 } while (ireg.ebx && count < ARRAY_SIZE(boot_params.e820_map)); in detect_memory_e820()
/linux-3.4.99/Documentation/x86/
Dzero-page.txt26 1E8/001 ALL e820_entries Number of entries in e820_map (below)
31 2D0/A00 ALL e820_map E820 memory map table
/linux-3.4.99/arch/x86/boot/compressed/
Deboot.c702 struct e820entry *e820_map = &boot_params->e820_map[0]; in make_boot_params() local
856 e820_map->addr = d->phys_addr; in make_boot_params()
857 e820_map->size = d->num_pages << 12; in make_boot_params()
858 e820_map->type = e820_type; in make_boot_params()
859 prev = e820_map++; in make_boot_params()
/linux-3.4.99/arch/x86/include/asm/
Dbootparam.h119 struct e820entry e820_map[E820MAX]; /* 0x2d0 */ member
/linux-3.4.99/arch/x86/lguest/
Dboot.c1170 e820_add_region(boot_params.e820_map[0].addr, in lguest_memory_setup()
1171 boot_params.e820_map[0].size, in lguest_memory_setup()
1172 boot_params.e820_map[0].type); in lguest_memory_setup()
/linux-3.4.99/arch/x86/kernel/
De820.c1017 sanitize_e820_map(boot_params.e820_map, in default_machine_specific_memory_setup()
1018 ARRAY_SIZE(boot_params.e820_map), in default_machine_specific_memory_setup()
1021 if (append_e820_map(boot_params.e820_map, boot_params.e820_entries) in default_machine_specific_memory_setup()
/linux-3.4.99/tools/lguest/
Dlguest.c1991 boot->e820_map[0] = ((struct e820entry) { 0, mem, E820_RAM }); in main()