Changeset ae318d3 in mainline for kernel/arch/arm32/src/mm/frame.c


Ignore:
Timestamp:
2009-02-16T18:50:48Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
06da55b
Parents:
17f168e
Message:

overhaul pareas: use one single physical area for the physical address space not belonging to physical memory

File:
1 edited

Legend:

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

    r17f168e rae318d3  
    4242/** Address of the last frame in the memory. */
    4343uintptr_t last_frame = 0;
     44uintptr_t end_frame = 0;
    4445
    4546/** Creates memory zones. */
     
    5051            BOOT_PAGE_TABLE_START_FRAME + BOOT_PAGE_TABLE_SIZE_IN_FRAMES, 0);
    5152        last_frame = machine_get_memory_size();
    52 
     53        end_frame = last_frame;
     54       
    5355        /* blacklist boot page table */
    5456        frame_mark_unavailable(BOOT_PAGE_TABLE_START_FRAME,
Note: See TracChangeset for help on using the changeset viewer.