public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390/sclp: Add check for get_zeroed_page()
@ 2025-02-17 15:31 Haoxiang Li
  2025-02-17 16:01 ` Heiko Carstens
  0 siblings, 1 reply; 3+ messages in thread
From: Haoxiang Li @ 2025-02-17 15:31 UTC (permalink / raw)
  To: hca, gor, agordeev, borntraeger, svens, haoxiang_li2024,
	schwidefsky
  Cc: linux-s390, linux-kernel, stable

Add check for the return value of get_zeroed_page() in
sclp_console_init() to prevent null pointer dereference.

Fixes: 4c8f4794b61e ("[S390] sclp console: convert from bootmem to slab")
Cc: stable@vger.kernel.org
Signed-off-by: Haoxiang Li <haoxiang_li2024@163.com>
---
 drivers/s390/char/sclp_con.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/s390/char/sclp_con.c b/drivers/s390/char/sclp_con.c
index e5d947c763ea..7447076b1ec1 100644
--- a/drivers/s390/char/sclp_con.c
+++ b/drivers/s390/char/sclp_con.c
@@ -282,6 +282,8 @@ sclp_console_init(void)
 	/* Allocate pages for output buffering */
 	for (i = 0; i < sclp_console_pages; i++) {
 		page = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
+		if (!page)
+			return -ENOMEM;
 		list_add_tail(page, &sclp_con_pages);
 	}
 	sclp_conbuf = NULL;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-02-17 16:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-17 15:31 [PATCH] s390/sclp: Add check for get_zeroed_page() Haoxiang Li
2025-02-17 16:01 ` Heiko Carstens
2025-02-17 16:16   ` Heiko Carstens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox