Lines Matching defs:fault
315 VMM_STAT(VMEXIT_NESTED_FAULT, "vm exits due to nested page fault");
1660 int cs_d, error, fault;
1675 VMM_CTR1(vcpu, "inst_emul fault accessing gpa %#lx", gpa);
1680 VIE_INST_SIZE, vie, &fault);
1685 error = fault = 0;
1687 if (error || fault)
1798 int error, fault;
1810 VM_PROT_RW, copyinfo, nitems(copyinfo), &fault);
1811 if (error != 0 || fault != 0) {
2150 * If an exception occurs while attempting to call the double-fault
2151 * handler the processor enters shutdown mode (aka triple fault).
2156 VMM_CTR2(vcpu, "triple fault: info1(%#lx), info2(%#lx)",
2170 /* Convert nested fault into a double fault. */
2253 * A double fault exception should never be injected directly into
2314 VMM_CTR2(vcpu, "Injecting page fault: error_code %#x, cr2 %#lx",
2803 int num_copyinfo, int *fault)
2817 error = vm_gla2gpa(vcpu, paging, gla, prot, &gpa, fault);
2818 if (error || *fault)
2842 *fault = 0;