Changes in kernel/arch/sparc64/src/mm/sun4v/tlb.c [77f65df:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4v/tlb.c
r77f65df ra000878c 54 54 #include <arch/cpu.h> 55 55 #include <arch/mm/pagesize.h> 56 #include <genarch/mm/page_ht.h> 56 57 57 58 #ifdef CONFIG_TSB … … 88 89 * field of the MMU fault status area is i. 89 90 */ 90 char *fault_types[] = {91 static const char *fault_types[] = { 91 92 "unknown", 92 93 "fast miss", … … 106 107 "invalid page size" 107 108 }; 108 109 109 110 110 /** Array of MMU fault status areas. */ … … 405 405 uint64_t errno = __hypercall_fast3(MMU_DEMAP_ALL, 0, 0, 406 406 MMU_FLAG_DTLB | MMU_FLAG_ITLB); 407 if (errno != EOK) {407 if (errno != HV_EOK) { 408 408 panic("Error code = %d.\n", errno); 409 409 }
Note:
See TracChangeset
for help on using the changeset viewer.