[PATCH] KVM: x86/i8259: Remove a dead store of irq in a conditional block

Like Xu posted 1 patch 4 years, 3 months ago
arch/x86/kvm/i8259.c | 1 -
1 file changed, 1 deletion(-)
[PATCH] KVM: x86/i8259: Remove a dead store of irq in a conditional block
Posted by Like Xu 4 years, 3 months ago
From: Like Xu <likexu@tencent.com>

The [clang-analyzer-deadcode.DeadStores] helper reports
that the value stored to 'irq' is never read.

Signed-off-by: Like Xu <likexu@tencent.com>
---
Note: not sure if "irq2 + 8" should be needed for "s->pics[0].irq_base + irq"

 arch/x86/kvm/i8259.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/x86/kvm/i8259.c b/arch/x86/kvm/i8259.c
index be99dc86293d..e1bb6218bb96 100644
--- a/arch/x86/kvm/i8259.c
+++ b/arch/x86/kvm/i8259.c
@@ -252,7 +252,6 @@ int kvm_pic_read_irq(struct kvm *kvm)
 				 */
 				irq2 = 7;
 			intno = s->pics[1].irq_base + irq2;
-			irq = irq2 + 8;
 		} else
 			intno = s->pics[0].irq_base + irq;
 	} else {
-- 
2.35.1
Re: [PATCH] KVM: x86/i8259: Remove a dead store of irq in a conditional block
Posted by Paolo Bonzini 4 years, 3 months ago
Queued, thanks.

Paolo