diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-07-16 09:56:41 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-07-16 09:56:41 -0400 |
commit | 208a352a5490f2fa4b78d702035036af1a53a287 (patch) | |
tree | d939570809b0f659a25672c3bc454342aa4460c7 /arch/x86/kvm/vmx/vmx.h | |
parent | 1229cbefa67969044fddd329ec498b4bbd0d32a1 (diff) | |
parent | 45405155d876c326da89162b8173b8cc9ab7ed75 (diff) | |
download | linux-208a352a5490f2fa4b78d702035036af1a53a287.tar.gz linux-208a352a5490f2fa4b78d702035036af1a53a287.tar.bz2 linux-208a352a5490f2fa4b78d702035036af1a53a287.zip |
Merge tag 'kvm-x86-vmx-6.11' of https://github.com/kvm-x86/linux into HEAD
KVM VMX changes for 6.11
- Remove an unnecessary EPT TLB flush when enabling hardware.
- Fix a series of bugs that cause KVM to fail to detect nested pending posted
interrupts as valid wake eents for a vCPU executing HLT in L2 (with
HLT-exiting disable by L1).
- Misc cleanups
Diffstat (limited to 'arch/x86/kvm/vmx/vmx.h')
-rw-r--r-- | arch/x86/kvm/vmx/vmx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kvm/vmx/vmx.h b/arch/x86/kvm/vmx/vmx.h index 08d7d67fe760..42498fa63abb 100644 --- a/arch/x86/kvm/vmx/vmx.h +++ b/arch/x86/kvm/vmx/vmx.h @@ -406,6 +406,7 @@ u64 construct_eptp(struct kvm_vcpu *vcpu, hpa_t root_hpa, int root_level); bool vmx_guest_inject_ac(struct kvm_vcpu *vcpu); void vmx_update_exception_bitmap(struct kvm_vcpu *vcpu); bool vmx_nmi_blocked(struct kvm_vcpu *vcpu); +bool __vmx_interrupt_blocked(struct kvm_vcpu *vcpu); bool vmx_interrupt_blocked(struct kvm_vcpu *vcpu); bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu); void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked); |