Changeset 95c675b in mainline for kernel/arch/sparc64/src/mm/sun4v/tlb.c
- Timestamp:
- 2017-10-17T13:11:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60af4cdb
- Parents:
- dbf32b1 (diff), a416d070 (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
-
kernel/arch/sparc64/src/mm/sun4v/tlb.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4v/tlb.c
rdbf32b1 r95c675b 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.
