mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
powerpc/powernv: Add a null pointer check in opal_event_init()
[ Upstream commit8649829a1d] kasprintf() returns a pointer to dynamically allocated memory which can be NULL upon failure. Fixes:2717a33d60("powerpc/opal-irqchip: Use interrupt names if present") Signed-off-by: Kunwu Chan <chentao@kylinos.cn> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20231127030755.1546750-1-chentao@kylinos.cn Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
dd8422ff27
commit
a14c55eb46
|
|
@ -275,6 +275,8 @@ int __init opal_event_init(void)
|
|||
else
|
||||
name = kasprintf(GFP_KERNEL, "opal");
|
||||
|
||||
if (!name)
|
||||
continue;
|
||||
/* Install interrupt handler */
|
||||
rc = request_irq(r->start, opal_interrupt, r->flags & IRQD_TRIGGER_MASK,
|
||||
name, NULL);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user