| 258 | */ |
| 259 | |
| 260 | static __inline void |
| 261 | pte2_sync(pt2_entry_t *pte2p) |
| 262 | { |
| 263 | |
| 264 | dsb(); |
| 265 | #ifndef PMAP_PTE_NOCACHE |
| 266 | if (!cpuinfo.coherent_walk) |
| 267 | dcache_wb_pou((vm_offset_t)pte2p, sizeof(*pte2p)); |
| 268 | #endif |
| 269 | } |
| 270 | |
| 271 | static __inline void |
| 272 | pte2_sync_range(pt2_entry_t *pte2p, vm_size_t size) |
no test coverage detected