Changeset 560b81c in mainline for kernel/arch/sparc64/src/mm/sun4v/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/sun4v/tlb.c
r97b8ca9 r560b81c 215 215 bool found = page_mapping_find(AS, va, true, &t); 216 216 if (found && PTE_EXECUTABLE(&t)) { 217 ASSERT(t.p); 218 217 219 /* 218 220 * The mapping was found in the software page hash table. … … 263 265 bool found = page_mapping_find(as, va, true, &t); 264 266 if (found) { 267 ASSERT(t.p); 268 265 269 /* 266 270 * The mapping was found in the software page hash table. … … 299 303 bool found = page_mapping_find(as, va, true, &t); 300 304 if (found && PTE_WRITABLE(&t)) { 305 ASSERT(t.p); 306 301 307 /* 302 308 * The mapping was found in the software page hash table and is
Note:
See TracChangeset
for help on using the changeset viewer.