Patch "irqchip/loongson-liointc: Fix improper error handling in liointc_init()" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    irqchip/loongson-liointc: Fix improper error handling in liointc_init()

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     irqchip-loongson-liointc-fix-improper-error-handling.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 288e4f93d062e51a5655562f5c2009c306807963
Author: Liu Peibao <liupeibao@xxxxxxxxxxx>
Date:   Fri Nov 4 19:07:12 2022 +0800

    irqchip/loongson-liointc: Fix improper error handling in liointc_init()
    
    [ Upstream commit 4a60a3cdcf1875c965095eb9e22c3d12bbc5a53d ]
    
    For cores less than 4, eg, loongson2k1000 with 2 cores, the
    of_property_match_string() may return with an error value,
    which causes that liointc could not work. At least isr0 is
    what should be checked like previous commit b2c4c3969fd7
    ("irqchip/loongson-liointc: irqchip add 2.0 version") did.
    
    Fixes: 0858ed035a85 ("irqchip/loongson-liointc: Add ACPI init support")
    Signed-off-by: Liu Peibao <liupeibao@xxxxxxxxxxx>
    Signed-off-by: Marc Zyngier <maz@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20221104110712.23300-1-liupeibao@xxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/irqchip/irq-loongson-liointc.c b/drivers/irqchip/irq-loongson-liointc.c
index 0da8716f8f24..c4584e2f0ad3 100644
--- a/drivers/irqchip/irq-loongson-liointc.c
+++ b/drivers/irqchip/irq-loongson-liointc.c
@@ -207,10 +207,13 @@ static int liointc_init(phys_addr_t addr, unsigned long size, int revision,
 					"reg-names", core_reg_names[i]);
 
 			if (index < 0)
-				goto out_iounmap;
+				continue;
 
 			priv->core_isr[i] = of_iomap(node, index);
 		}
+
+		if (!priv->core_isr[0])
+			goto out_iounmap;
 	}
 
 	/* Setup IRQ domain */



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux