hw/intc/loongarch_extioi: Fix interrupt routing update
authorBibo Mao <maobibo@loongson.cn>
Wed, 13 Mar 2024 09:39:32 +0000 (17:39 +0800)
committerSong Gao <gaosong@loongson.cn>
Wed, 20 Mar 2024 02:19:57 +0000 (10:19 +0800)
Interrupt number in loop sentence should be base irq plus
loop index, it is missing on checking whether the irq
is pending.

Fixes: 428a6ef4396 ("Add vmstate post_load support")
Signed-off-by: Bibo Mao <maobibo@loongson.cn>
Reviewed-by: Song Gao <gaosong@loongson.cn>
Signed-off-by: Song Gao <gaosong@loongson.cn>
Message-Id: <20240313093932.2653518-1-maobibo@loongson.cn>

hw/intc/loongarch_extioi.c

index bdfa3b481e7bbe05031671289b0187362f26bf63..0b358548eb4d1b1067448af60647b5779957bbde 100644 (file)
@@ -151,7 +151,7 @@ static inline void extioi_update_sw_coremap(LoongArchExtIOI *s, int irq,
             continue;
         }
 
-        if (notify && test_bit(irq, (unsigned long *)s->isr)) {
+        if (notify && test_bit(irq + i, (unsigned long *)s->isr)) {
             /*
              * lower irq at old cpu and raise irq at new cpu
              */