Changeset 560b81c in mainline for kernel/arch/sparc64/src/mm/sun4u/tlb.c
- Timestamp:
- 2016-09-17T15:09:40Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ae66564
- Parents:
- 97b8ca9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/sun4u/tlb.c
r97b8ca9 r560b81c 201 201 bool found = page_mapping_find(AS, istate->tpc, true, &t); 202 202 if (found && PTE_EXECUTABLE(&t)) { 203 ASSERT(t.p); 204 203 205 /* 204 206 * The mapping was found in the software page hash table. … … 256 258 bool found = page_mapping_find(as, page_16k, true, &t); 257 259 if (found) { 260 ASSERT(t.p); 261 258 262 /* 259 263 * The mapping was found in the software page hash table. … … 297 301 bool found = page_mapping_find(as, page_16k, true, &t); 298 302 if (found && PTE_WRITABLE(&t)) { 303 ASSERT(t.p); 304 299 305 /* 300 306 * The mapping was found in the software page hash table and is
Note:
See TracChangeset
for help on using the changeset viewer.