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