Changeset 071a8ae6 in mainline
- Timestamp:
- 2006-02-01T20:54:34Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b5e0bb8
- Parents:
- ef67bab
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/src/mm/frame.c
ref67bab r071a8ae6 32 32 #include <panic.h> 33 33 34 /* 35 * This is Ski-specific and certainly not sufficient 36 * for real ia64 systems that provide memory map. 37 */ 38 #define ROM_BASE 0xa0000 39 #define ROM_SIZE (384*1024) 40 34 41 void frame_arch_init(void) 35 42 { 43 /* 44 * Blacklist ROM regions. 45 */ 46 frame_region_not_free(ROM_BASE, ROM_SIZE); 36 47 zone_create_in_region(0, config.memory_size & ~(FRAME_SIZE-1)); 37 48 } -
arch/sparc64/include/mm/page.h
ref67bab r071a8ae6 42 42 43 43 /** Implementation of page hash table interface. */ 44 #define HT_WIDTH_ARCH 20 /* 1M */44 #define HT_WIDTH_ARCH FRAME_WIDTH 45 45 #define HT_HASH_ARCH(page, asid) 0 46 46 #define HT_COMPARE_ARCH(page, asid, t) 0 -
genarch/src/mm/page_ht.c
ref67bab r071a8ae6 57 57 page_operations_t page_ht_operations = { 58 58 .mapping_insert = ht_mapping_insert, 59 .mapping_find = ht_mapping_find ,59 .mapping_find = ht_mapping_find 60 60 }; 61 61 -
generic/src/main/main.c
ref67bab r071a8ae6 78 78 size_t init_size = 0; 79 79 80 /** Kernel address space. */81 as_t *AS_KERNEL = NULL;82 83 80 void main_bsp(void); 84 81 void main_ap(void); -
generic/src/mm/as.c
ref67bab r071a8ae6 57 57 as_operations_t *as_operations = NULL; 58 58 59 /** Kernel address space. */ 60 as_t *AS_KERNEL = NULL; 61 59 62 static int get_area_flags(as_area_t *a); 60 63 … … 68 71 } 69 72 70 /** Create address space. */ 73 /** Create address space. 74 * 75 * @param flags Flags that influence way in wich the address space is created. 76 */ 71 77 as_t *as_create(int flags) 72 78 {
Note:
See TracChangeset
for help on using the changeset viewer.