Changes in kernel/arch/sparc64/src/mm/sun4v/tlb.c [560b81c:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4v/tlb.c
r560b81c r63e27ef 43 43 #include <arch/mm/tlb.h> 44 44 #include <arch/interrupt.h> 45 #include <assert.h> 45 46 #include <interrupt.h> 46 47 #include <arch.h> … … 215 216 bool found = page_mapping_find(AS, va, true, &t); 216 217 if (found && PTE_EXECUTABLE(&t)) { 217 ASSERT(t.p);218 assert(t.p); 218 219 219 220 /* … … 265 266 bool found = page_mapping_find(as, va, true, &t); 266 267 if (found) { 267 ASSERT(t.p);268 assert(t.p); 268 269 269 270 /* … … 303 304 bool found = page_mapping_find(as, va, true, &t); 304 305 if (found && PTE_WRITABLE(&t)) { 305 ASSERT(t.p);306 assert(t.p); 306 307 307 308 /* … … 345 346 __hypercall_fast_ret1(0, 0, 0, 0, 0, CPU_MYID, &myid); 346 347 347 ASSERT(mmu_fsas[myid].dft < 16);348 assert(mmu_fsas[myid].dft < 16); 348 349 349 350 printf("condition which caused the fault: %s\n",
Note:
See TracChangeset
for help on using the changeset viewer.