Changeset bbe4828 in mainline for kernel/arch/ia64/src/mm/frame.c


Ignore:
Timestamp:
2011-07-05T19:41:46Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3714e79
Parents:
547c37a
Message:

Use EFI memory map when available.

  • Configure the kernel memory map from the EFI memory map, if the loader was passed the ELILO-compatible boot parameter in r28.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/mm/frame.c

    r547c37a rbbe4828  
    5858                unsigned int i;
    5959                for (i = 0; i < bootinfo->memmap_items; i++) {
    60                         if (bootinfo->memmap[i].type == EFI_MEMMAP_FREE_MEM) {
     60                        if (bootinfo->memmap[i].type == MEMMAP_FREE_MEM) {
    6161                                uint64_t base = bootinfo->memmap[i].base;
    6262                                uint64_t size = bootinfo->memmap[i].size;
Note: See TracChangeset for help on using the changeset viewer.