From: Colin Ian King Date: Thu, 22 Feb 2018 18:08:53 +0000 (+0000) Subject: MIPS: OCTEON: irq: Check for null return on kzalloc allocation X-Git-Tag: v4.1.51~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=234d93b6412fd5f670ba4a705005a4f2fdac4a2f;p=platform%2Fkernel%2Flinux-exynos.git MIPS: OCTEON: irq: Check for null return on kzalloc allocation [ Upstream commit 902f4d067a50ccf645a58dd5fb1d113b6e0f9b5b ] The allocation of host_data is not null checked, leading to a null pointer dereference if the allocation fails. Fix this by adding a null check and return with -ENOMEM. Fixes: 64b139f97c01 ("MIPS: OCTEON: irq: add CIB and other fixes") Signed-off-by: Colin Ian King Acked-by: David Daney Cc: Ralf Baechle Cc: "Steven J. Hill" Cc: linux-mips@linux-mips.org Cc: # 4.0+ Patchwork: https://patchwork.linux-mips.org/patch/18658/ Signed-off-by: James Hogan Signed-off-by: Sasha Levin --- diff --git a/arch/mips/cavium-octeon/octeon-irq.c b/arch/mips/cavium-octeon/octeon-irq.c index 10f762557b92..bacefffee16e 100644 --- a/arch/mips/cavium-octeon/octeon-irq.c +++ b/arch/mips/cavium-octeon/octeon-irq.c @@ -2242,6 +2242,8 @@ static int __init octeon_irq_init_cib(struct device_node *ciu_node, } host_data = kzalloc(sizeof(*host_data), GFP_KERNEL); + if (!host_data) + return -ENOMEM; raw_spin_lock_init(&host_data->lock); addr = of_get_address(ciu_node, 0, NULL, NULL);