Changeset eb1b8b6 in mainline
- Timestamp:
- 2006-02-08T00:08:55Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 085d973
- Parents:
- 8b3eebb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/_link.ld.in
r8b3eebb reb1b8b6 12 12 13 13 SECTIONS { 14 .image 0x0000000000 001000: AT (0x0000000000001000) {14 .image 0x0000000000100000: AT (0x0000000000100000) { 15 15 ktext_start = .; 16 16 *(K_TEXT_START); … … 38 38 _hardcoded_ktext_size = ktext_end - ktext_start; 39 39 _hardcoded_kdata_size = kdata_end - kdata_start; 40 _hardcoded_load_address = 0x0000000000 001000;40 _hardcoded_load_address = 0x0000000000100000; 41 41 42 42 } -
arch/ia64/src/mm/frame.c
r8b3eebb reb1b8b6 42 42 { 43 43 /* 44 * Workaround to prevent slab allocator from allocating frame 0. 45 * Remove the following statement when the kernel is no longer 46 * identity mapped. 47 */ 48 frame_region_not_free(0, FRAME_SIZE); 49 50 /* 44 51 * Blacklist ROM regions. 45 52 */ -
arch/sparc64/src/mm/frame.c
r8b3eebb reb1b8b6 34 34 { 35 35 /* 36 * Workaround to prevent slab allocator from allocating frame 0, 37 * which is not mapped by OFW. 36 * Workaround to prevent slab allocator from allocating frame 0. 37 * Frame 0 is 38 * a) not mapped by OFW 39 * b) would be confused with NULL error return code 38 40 */ 39 41 frame_region_not_free(0, FRAME_SIZE); -
generic/src/mm/buddy.c
r8b3eebb reb1b8b6 169 169 /* 170 170 * Return the other half to buddy system. 171 * PROBLEM!!!! FILL FIND OTHER PART AS BUDDY AND LINK TOGETHER171 * PROBLEM!!!! WILL FIND OTHER PART AS BUDDY AND LINK TOGETHER 172 172 */ 173 173 b->op->mark_busy(b, res);
Note:
See TracChangeset
for help on using the changeset viewer.