Changeset 95c675b in mainline for kernel/arch/sparc64/src/mm/sun4u/tlb.c
- Timestamp:
- 2017-10-17T13:11:35Z (7 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
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified kernel/arch/sparc64/src/mm/sun4u/tlb.c ¶
rdbf32b1 r95c675b 41 41 #include <arch/mm/mmu.h> 42 42 #include <arch/interrupt.h> 43 #include <assert.h> 43 44 #include <interrupt.h> 44 45 #include <arch.h> … … 201 202 bool found = page_mapping_find(AS, istate->tpc, true, &t); 202 203 if (found && PTE_EXECUTABLE(&t)) { 203 ASSERT(t.p);204 assert(t.p); 204 205 205 206 /* … … 258 259 bool found = page_mapping_find(as, page_16k, true, &t); 259 260 if (found) { 260 ASSERT(t.p);261 assert(t.p); 261 262 262 263 /* … … 301 302 bool found = page_mapping_find(as, page_16k, true, &t); 302 303 if (found && PTE_WRITABLE(&t)) { 303 ASSERT(t.p);304 assert(t.p); 304 305 305 306 /*
Note:
See TracChangeset
for help on using the changeset viewer.