Changeset 382fb4ba in mainline for kernel/arch/sparc32/src/mm/page.c
- Timestamp:
- 2013-12-10T22:33:33Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f7a33de
- Parents:
- 2955bb9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc32/src/mm/page.c
r2955bb9 r382fb4ba 74 74 as_switch(NULL, AS_KERNEL); 75 75 76 printf("as_context_table=0x%08x\n", as_context_table);76 // printf("as_context_table=0x%08x\n", as_context_table); 77 77 78 78 /* Switch MMU to new context table */ … … 89 89 mmu_fault_type_t type = (mmu_fault_type_t)fault->at; 90 90 91 printf("page fault on address 0x%08x, status 0x%08x, type %d\n", fault_address, fault_status, type);91 // printf("page fault on address 0x%08x, status 0x%08x, type %d\n", fault_address, fault_status, type); 92 92 93 93 if (type == FAULT_TYPE_LOAD_USER_DATA || … … 101 101 if (type == FAULT_TYPE_STORE_USER_DATA || 102 102 type == FAULT_TYPE_STORE_USER_INSTRUCTION || 103 type == FAULT_TYPE_STORE_SUPERVISOR_INSTRUCTION) 103 type == FAULT_TYPE_STORE_SUPERVISOR_INSTRUCTION || 104 type == FAULT_TYPE_STORE_SUPERVISOR_DATA) 104 105 as_page_fault(fault_address, PF_ACCESS_WRITE, istate); 105 106 }
Note:
See TracChangeset
for help on using the changeset viewer.