| 292 | } |
| 293 | |
| 294 | static void |
| 295 | unmap_ucode(uintptr_t free, size_t len) |
| 296 | { |
| 297 | #ifdef __i386__ |
| 298 | uintptr_t va; |
| 299 | |
| 300 | for (va = free; va < free + len; va += PAGE_SIZE) |
| 301 | pmap_kremove(va); |
| 302 | #else |
| 303 | (void)free; |
| 304 | (void)len; |
| 305 | #endif |
| 306 | } |
| 307 | |
| 308 | /* |
| 309 | * Search for an applicable microcode update, and load it. APs will load the |
no test coverage detected