Skip to content

Commit 902f4d0

Browse files
Colin Ian Kingamalon
authored andcommitted
MIPS: OCTEON: irq: Check for null return on kzalloc allocation
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: 64b139f ("MIPS: OCTEON: irq: add CIB and other fixes") Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: David Daney <david.daney@cavium.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: "Steven J. Hill" <Steven.Hill@cavium.com> Cc: linux-mips@linux-mips.org Cc: <stable@vger.kernel.org> # 4.0+ Patchwork: https://patchwork.linux-mips.org/patch/18658/ Signed-off-by: James Hogan <jhogan@kernel.org>
1 parent 1b22b4b commit 902f4d0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

arch/mips/cavium-octeon/octeon-irq.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2277,6 +2277,8 @@ static int __init octeon_irq_init_cib(struct device_node *ciu_node,
22772277
}
22782278

22792279
host_data = kzalloc(sizeof(*host_data), GFP_KERNEL);
2280+
if (!host_data)
2281+
return -ENOMEM;
22802282
raw_spin_lock_init(&host_data->lock);
22812283

22822284
addr = of_get_address(ciu_node, 0, NULL, NULL);

0 commit comments

Comments
 (0)