Changeset e2bf639 in mainline for kernel/arch/sparc64/src/mm/tlb.c
- Timestamp:
- 2006-09-05T21:06:59Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d7e3f1ad
- Parents:
- 5035eeb7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/tlb.c
r5035eeb7 re2bf639 41 41 #include <arch/mm/mmu.h> 42 42 #include <arch/interrupt.h> 43 #include <interrupt.h> 43 44 #include <arch.h> 44 45 #include <print.h> … … 309 310 char *tpc_str = get_symtab_entry(istate->tpc); 310 311 312 fault_if_from_uspace(istate, "%s\n", str); 311 313 printf("TPC=%p, (%s)\n", istate->tpc, tpc_str); 312 314 panic("%s\n", str); … … 320 322 va = tag.vpn << PAGE_WIDTH; 321 323 324 fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va, tag.context); 322 325 printf("Faulting page: %p, ASID=%d\n", va, tag.context); 323 326 printf("TPC=%p, (%s)\n", istate->tpc, tpc_str); … … 332 335 va = tag.vpn << PAGE_WIDTH; 333 336 337 fault_if_from_uspace(istate, "%s, Page=%p (ASID=%d)\n", str, va, tag.context); 334 338 printf("Faulting page: %p, ASID=%d\n", va, tag.context); 335 339 printf("TPC=%p, (%s)\n", istate->tpc, tpc_str);
Note:
See TracChangeset
for help on using the changeset viewer.