From: Nikita Leshenko Date: Sun, 5 Nov 2017 13:52:31 +0000 (+0200) Subject: KVM: x86: ioapic: Remove redundant check for Remote IRR in ioapic_set_irq X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7d2253684dd10eb800ee1898ad7904044ae88ed6;p=linux.git KVM: x86: ioapic: Remove redundant check for Remote IRR in ioapic_set_irq Remote IRR for level-triggered interrupts was previously checked in ioapic_set_irq, but since we now have a check in ioapic_service we can remove the redundant check from ioapic_set_irq. This commit doesn't change semantics. Signed-off-by: Nikita Leshenko Reviewed-by: Liran Alon Signed-off-by: Konrad Rzeszutek Wilk Reviewed-by: Wanpeng Li Signed-off-by: Radim Krčmář --- diff --git a/arch/x86/kvm/ioapic.c b/arch/x86/kvm/ioapic.c index 5c92311392437..6df150eaaa78f 100644 --- a/arch/x86/kvm/ioapic.c +++ b/arch/x86/kvm/ioapic.c @@ -209,12 +209,12 @@ static int ioapic_set_irq(struct kvm_ioapic *ioapic, unsigned int irq, old_irr = ioapic->irr; ioapic->irr |= mask; - if (edge) + if (edge) { ioapic->irr_delivered &= ~mask; - if ((edge && old_irr == ioapic->irr) || - (!edge && entry.fields.remote_irr)) { - ret = 0; - goto out; + if (old_irr == ioapic->irr) { + ret = 0; + goto out; + } } ret = ioapic_service(ioapic, irq, line_status);