Searched refs:exit_qualification (Results 1 – 1 of 1) sorted by relevance
232 let exit_qualification = vmx_vmread(VmcsFields::VMEXIT_QUALIFICATION as u32).unwrap(); in vmexit_handler() localVariable234 let mut error_code = exit_qualification & (1 << 1); in vmexit_handler()236 error_code |= (exit_qualification << 2) & (1 << 4); in vmexit_handler()238 error_code |= (exit_qualification >> 3) & (1 << 0); in vmexit_handler()