| 3258 | } |
| 3259 | |
| 3260 | static void |
| 3261 | pmap_update_pde_teardown(void *arg) |
| 3262 | { |
| 3263 | struct pde_action *act = arg; |
| 3264 | |
| 3265 | if (CPU_ISSET(PCPU_GET(cpuid), &act->invalidate)) |
| 3266 | pmap_update_pde_invalidate(act->pmap, act->va, act->newpde); |
| 3267 | } |
| 3268 | |
| 3269 | /* |
| 3270 | * Change the page size for the specified virtual address in a way that |
nothing calls this directly
no test coverage detected