Changeset 4872160 in mainline for kernel/arch/sparc64/src/mm
- Timestamp:
- 2010-05-04T10:44:55Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 568db0f
- Parents:
- bb252ca
- Location:
- kernel/arch/sparc64/src/mm
- Files:
-
- 2 edited
-
sun4u/frame.c (modified) (2 diffs)
-
sun4v/frame.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4u/frame.c
rbb252ca r4872160 43 43 uintptr_t last_frame = NULL; 44 44 45 /** Create memory zones according to information stored in bootinfo.45 /** Create memory zones according to information stored in memmap. 46 46 * 47 * Walk the bootinfomemory map and create frame zones according to it.47 * Walk the memory map and create frame zones according to it. 48 48 */ 49 49 void frame_arch_init(void) … … 53 53 54 54 if (config.cpu_active == 1) { 55 for (i = 0; i < bootinfo.memmap.count; i++) {56 uintptr_t start = bootinfo.memmap.zones[i].start;57 size_t size = bootinfo.memmap.zones[i].size;55 for (i = 0; i < memmap.cnt; i++) { 56 uintptr_t start = (uintptr_t) memmap.zones[i].start; 57 size_t size = memmap.zones[i].size; 58 58 59 59 /* -
kernel/arch/sparc64/src/mm/sun4v/frame.c
rbb252ca r4872160 41 41 #include <macros.h> 42 42 43 /** Create memory zones according to information stored in bootinfo.43 /** Create memory zones according to information stored in memmap. 44 44 * 45 * Walk the bootinfomemory map and create frame zones according to it.45 * Walk the memory map and create frame zones according to it. 46 46 */ 47 47 void frame_arch_init(void) … … 51 51 52 52 if (config.cpu_active == 1) { 53 for (i = 0; i < bootinfo.memmap.count; i++) {54 uintptr_t start = bootinfo.memmap.zones[i].start;55 size_t size = bootinfo.memmap.zones[i].size;53 for (i = 0; i < memmap->count; i++) { 54 uintptr_t start = (uintptr_t) memmap.zones[i].start; 55 size_t size = memmap.zones[i].size; 56 56 57 57 /*
Note:
See TracChangeset
for help on using the changeset viewer.
