Home
last modified time | relevance | path

Searched refs:ept_qual (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/target/i386/hvf/
H A Dhvf.c120 static bool ept_emulation_fault(hvf_slot *slot, uint64_t gpa, uint64_t ept_qual) in ept_emulation_fault() argument
125 if (ept_qual & EPT_VIOLATION_INST_FETCH) { in ept_emulation_fault()
130 read = ept_qual & EPT_VIOLATION_DATA_READ ? 1 : 0; in ept_emulation_fault()
131 write = ept_qual & EPT_VIOLATION_DATA_WRITE ? 1 : 0; in ept_emulation_fault()
150 if ((ept_qual & EPT_VIOLATION_GLA_VALID) == 0 || in ept_emulation_fault()
151 (ept_qual & EPT_VIOLATION_XLAT_VALID) == 0) { in ept_emulation_fault()