]> git.baikalelectronics.ru Git - kernel.git/commit
scsi: scsi_debug: Fix a warning in resp_report_zones()
authorHarshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Sat, 12 Nov 2022 07:06:12 +0000 (23:06 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 31 Dec 2022 12:32:35 +0000 (13:32 +0100)
commit0b51f622b05fca77abb6c33d6892f4bc47acafc8
treeecc395ac564860fdac18f006143941850c786267
parentf2f79e890bde09bffe2c6ae773031fb20db1f47f
scsi: scsi_debug: Fix a warning in resp_report_zones()

[ Upstream commit 3fc593743868d18bc3b7bf421fb1741a743d597f ]

As 'alloc_len' is user controlled data, if user tries to allocate memory
larger than(>=) MAX_ORDER, then kcalloc() will fail, it creates a stack
trace and messes up dmesg with a warning.

Add __GFP_NOWARN in order to avoid too large allocation warning.  This is
detected by static analysis using smatch.

Fixes: 776ea72474c7 ("scsi: scsi_debug: Fix buffer size of REPORT ZONES command")
Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com>
Link: https://lore.kernel.org/r/20221112070612.2121535-1-harshit.m.mogalapalli@oracle.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/scsi/scsi_debug.c