Changeset 63e27ef in mainline for kernel/arch/ppc32/src/mm/pht.c
- Timestamp:
- 2017-06-19T21:47:42Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- deacc58d
- Parents:
- 7354b5e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/mm/pht.c
r7354b5e r63e27ef 35 35 #include <arch/mm/pht.h> 36 36 #include <arch/mm/tlb.h> 37 #include <assert.h> 37 38 #include <interrupt.h> 38 39 #include <mm/as.h> … … 79 80 found = page_mapping_find(as, badvaddr, true, pte); 80 81 81 ASSERT(found);82 ASSERT(pte->present);82 assert(found); 83 assert(pte->present); 83 84 84 85 return found;
Note:
See TracChangeset
for help on using the changeset viewer.