Loading arch/x86/include/asm/kvm_host.h +2 −2 Original line number Diff line number Diff line Loading @@ -804,7 +804,7 @@ extern u32 kvm_max_guest_tsc_khz; enum emulation_result { EMULATE_DONE, /* no further processing */ EMULATE_DO_MMIO, /* kvm_run filled with mmio request */ EMULATE_USER_EXIT, /* kvm_run ready for userspace exit */ EMULATE_FAIL, /* can't emulate this instruction */ }; Loading arch/x86/kvm/mmu.c +1 −1 Original line number Diff line number Diff line Loading @@ -4182,7 +4182,7 @@ int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code, switch (er) { case EMULATE_DONE: return 1; case EMULATE_DO_MMIO: case EMULATE_USER_EXIT: ++vcpu->stat.mmio_exits; /* fall through */ case EMULATE_FAIL: Loading arch/x86/kvm/vmx.c +1 −1 Original line number Diff line number Diff line Loading @@ -5452,7 +5452,7 @@ static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE); if (err == EMULATE_DO_MMIO) { if (err == EMULATE_USER_EXIT) { ret = 0; goto out; } Loading arch/x86/kvm/x86.c +2 −2 Original line number Diff line number Diff line Loading @@ -5038,11 +5038,11 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, writeback = false; vcpu->arch.complete_userspace_io = complete_emulated_pio; } r = EMULATE_DO_MMIO; r = EMULATE_USER_EXIT; } else if (vcpu->mmio_needed) { if (!vcpu->mmio_is_write) writeback = false; r = EMULATE_DO_MMIO; r = EMULATE_USER_EXIT; vcpu->arch.complete_userspace_io = complete_emulated_mmio; } else if (r == EMULATION_RESTART) goto restart; Loading Loading
arch/x86/include/asm/kvm_host.h +2 −2 Original line number Diff line number Diff line Loading @@ -804,7 +804,7 @@ extern u32 kvm_max_guest_tsc_khz; enum emulation_result { EMULATE_DONE, /* no further processing */ EMULATE_DO_MMIO, /* kvm_run filled with mmio request */ EMULATE_USER_EXIT, /* kvm_run ready for userspace exit */ EMULATE_FAIL, /* can't emulate this instruction */ }; Loading
arch/x86/kvm/mmu.c +1 −1 Original line number Diff line number Diff line Loading @@ -4182,7 +4182,7 @@ int kvm_mmu_page_fault(struct kvm_vcpu *vcpu, gva_t cr2, u32 error_code, switch (er) { case EMULATE_DONE: return 1; case EMULATE_DO_MMIO: case EMULATE_USER_EXIT: ++vcpu->stat.mmio_exits; /* fall through */ case EMULATE_FAIL: Loading
arch/x86/kvm/vmx.c +1 −1 Original line number Diff line number Diff line Loading @@ -5452,7 +5452,7 @@ static int handle_invalid_guest_state(struct kvm_vcpu *vcpu) err = emulate_instruction(vcpu, EMULTYPE_NO_REEXECUTE); if (err == EMULATE_DO_MMIO) { if (err == EMULATE_USER_EXIT) { ret = 0; goto out; } Loading
arch/x86/kvm/x86.c +2 −2 Original line number Diff line number Diff line Loading @@ -5038,11 +5038,11 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu, writeback = false; vcpu->arch.complete_userspace_io = complete_emulated_pio; } r = EMULATE_DO_MMIO; r = EMULATE_USER_EXIT; } else if (vcpu->mmio_needed) { if (!vcpu->mmio_is_write) writeback = false; r = EMULATE_DO_MMIO; r = EMULATE_USER_EXIT; vcpu->arch.complete_userspace_io = complete_emulated_mmio; } else if (r == EMULATION_RESTART) goto restart; Loading