s390/sclp: Add check for get_zeroed_page()
authorHaoxiang Li <haoxiang_li2024@163.com>
Tue, 18 Feb 2025 02:52:16 +0000 (10:52 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 May 2025 05:59:15 +0000 (07:59 +0200)
commit3b3aa72636a6205933609ec274a8747720c1ee3f
treeddfe2eebeb66444cf48a461c268920a9c777b041
parent6e026e605088ae893a9781238712ea310294ceb2
s390/sclp: Add check for get_zeroed_page()

[ Upstream commit 3db42c75a921854a99db0a2775814fef97415bac ]

Add check for the return value of get_zeroed_page() in
sclp_console_init() to prevent null pointer dereference.
Furthermore, to solve the memory leak caused by the loop
allocation, add a free helper to do the free job.

Signed-off-by: Haoxiang Li <haoxiang_li2024@163.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Link: https://lore.kernel.org/r/20250218025216.2421548-1-haoxiang_li2024@163.com
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/s390/char/sclp_con.c