| 165 | } |
| 166 | |
| 167 | void |
| 168 | ept_invalidate_mappings(u_long eptp) |
| 169 | { |
| 170 | struct invept_desc invept_desc = { 0 }; |
| 171 | |
| 172 | invept_desc.eptp = eptp; |
| 173 | |
| 174 | smp_rendezvous(NULL, invept_single_context, NULL, &invept_desc); |
| 175 | } |
| 176 | |
| 177 | static int |
| 178 | ept_pinit(pmap_t pmap) |
no test coverage detected