Finally we always return highest_irr so its unnecessary to return -1
after check if highest_irr == -1.

Signed-off-by: Tiejun Chen <[email protected]>
---
 arch/x86/kvm/lapic.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
index 5f574b4..e6a7eb6 100644
--- a/arch/x86/kvm/lapic.c
+++ b/arch/x86/kvm/lapic.c
@@ -1638,8 +1638,7 @@ int kvm_apic_has_interrupt(struct kvm_vcpu *vcpu)
 
        apic_update_ppr(apic);
        highest_irr = apic_find_highest_irr(apic);
-       if ((highest_irr == -1) ||
-           ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI)))
+       if ((highest_irr & 0xF0) <= kvm_apic_get_reg(apic, APIC_PROCPRI))
                return -1;
        return highest_irr;
 }
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to