Changeset aa85487 in mainline for kernel/arch/sparc64/src/mm/sun4v/tlb.c
- Timestamp:
- 2010-03-07T15:11:56Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- aadf01e
- Parents:
- 2e99277 (diff), 137691a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4v/tlb.c
r2e99277 raa85487 89 89 * field of the MMU fault status area is i. 90 90 */ 91 char *fault_types[] = {91 static const char *fault_types[] = { 92 92 "unknown", 93 93 "fast miss", … … 107 107 "invalid page size" 108 108 }; 109 110 109 111 110 /** Array of MMU fault status areas. */ … … 406 405 uint64_t errno = __hypercall_fast3(MMU_DEMAP_ALL, 0, 0, 407 406 MMU_FLAG_DTLB | MMU_FLAG_ITLB); 408 if (errno != EOK) {407 if (errno != HV_EOK) { 409 408 panic("Error code = %d.\n", errno); 410 409 }
Note:
See TracChangeset
for help on using the changeset viewer.