| 129 | } |
| 130 | |
| 131 | static __inline void |
| 132 | pte1_sync_range(pt1_entry_t *pte1p, vm_size_t size) |
| 133 | { |
| 134 | |
| 135 | dsb(); |
| 136 | #ifndef PMAP_PTE_NOCACHE |
| 137 | if (!cpuinfo.coherent_walk) |
| 138 | dcache_wb_pou((vm_offset_t)pte1p, size); |
| 139 | #endif |
| 140 | } |
| 141 | |
| 142 | static __inline void |
| 143 | pte1_store(pt1_entry_t *pte1p, pt1_entry_t pte1) |
no test coverage detected