Thread (7 messages) 7 messages, 3 authors, 2023-03-06

Re: [PATCH] wifi: mt76: add a check of vzalloc in mt7615_coredump_work

From: Lorenzo Bianconi <hidden>
Date: 2023-02-27 13:34:30
Also in: linux-arm-kernel, linux-mediatek, linux-wireless, lkml

vzalloc may fails, dump might be null and will cause
illegal address access later.
can you please add a Fixes tag?

Regards,
Lorenzo
quoted hunk ↗ jump to hunk
Signed-off-by: Kang Chen <redacted>
---
 drivers/net/wireless/mediatek/mt76/mt7615/mac.c | 3 +++
 1 file changed, 3 insertions(+)
diff --git a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
index a95602473..73d84c301 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7615/mac.c
@@ -2367,6 +2367,9 @@ void mt7615_coredump_work(struct work_struct *work)
 	}
 
 	dump = vzalloc(MT76_CONNAC_COREDUMP_SZ);
+	if (!dump)
+		return;
+
 	data = dump;
 
 	while (true) {
-- 
2.34.1

Attachments

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help