| 269 | } |
| 270 | |
| 271 | static __inline void |
| 272 | pte2_sync_range(pt2_entry_t *pte2p, vm_size_t size) |
| 273 | { |
| 274 | |
| 275 | dsb(); |
| 276 | #ifndef PMAP_PTE_NOCACHE |
| 277 | if (!cpuinfo.coherent_walk) |
| 278 | dcache_wb_pou((vm_offset_t)pte2p, size); |
| 279 | #endif |
| 280 | } |
| 281 | |
| 282 | static __inline void |
| 283 | pte2_store(pt2_entry_t *pte2p, pt2_entry_t pte2) |
no test coverage detected