Changes in kernel/arch/ppc32/src/mm/pht.c [38dc82d:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/mm/pht.c
r38dc82d 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.