| 6471 | |
| 6472 | #if VM_NRESERVLEVEL > 0 |
| 6473 | static bool |
| 6474 | pmap_pde_ept_executable(pmap_t pmap, pd_entry_t pde) |
| 6475 | { |
| 6476 | |
| 6477 | if (pmap->pm_type != PT_EPT) |
| 6478 | return (false); |
| 6479 | return ((pde & EPT_PG_EXECUTE) != 0); |
| 6480 | } |
| 6481 | |
| 6482 | /* |
| 6483 | * Tries to promote the 512, contiguous 4KB page mappings that are within a |
no outgoing calls
no test coverage detected