Changeset 84dd253 in mainline for arch/mips32/src/mm/frame.c
- Timestamp:
- 2005-09-21T13:37:50Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aed4eca
- Parents:
- fcacfb7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips32/src/mm/frame.c
rfcacfb7 r84dd253 31 31 #include <arch/asm/boot.h> 32 32 #include <arch/mm/page.h> 33 #include <config.h> 34 #include <panic.h> 33 35 34 36 void frame_arch_init(void) 35 37 { 38 zone_t *z; 39 40 z = zone_create(0, config.memory_size, 0); 41 if (!z) { 42 panic("Can't allocate zone (%dB).\n", config.memory_size); 43 } 44 zone_attach(z); 45 36 46 /* Disable Everything until load address */ 37 47 frame_region_not_free(0, KA2PA(KERNEL_LOAD_ADDRESS));
Note:
See TracChangeset
for help on using the changeset viewer.