Skip to content

Commit

Permalink
KVM: VMX: Cleanup stalled INTR_INFO read
Browse files Browse the repository at this point in the history
Commit 1c0f4f5011829dac96347b5f84ba37c2252e1e08 left a useless access
of VM_ENTRY_INTR_INFO_FIELD in vmx_intr_assist behind. Clean this up.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
  • Loading branch information
Jan Kiszka authored and Avi Kivity committed Oct 15, 2008
1 parent 0bd595f commit 4b92fe0
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions arch/x86/kvm/vmx.c
Original file line number Diff line number Diff line change
Expand Up @@ -3135,11 +3135,8 @@ static void vmx_complete_interrupts(struct vcpu_vmx *vmx)

static void vmx_intr_assist(struct kvm_vcpu *vcpu)
{
u32 intr_info_field;

update_tpr_threshold(vcpu);

intr_info_field = vmcs_read32(VM_ENTRY_INTR_INFO_FIELD);
if (cpu_has_virtual_nmis()) {
if (vcpu->arch.nmi_pending && !vcpu->arch.nmi_injected) {
if (vmx_nmi_enabled(vcpu)) {
Expand Down

0 comments on commit 4b92fe0

Please sign in to comment.