scripts/checkstack.pl: match all stack sizes for s390
authorHeiko Carstens <hca@linux.ibm.com>
Mon, 20 Nov 2023 12:00:00 +0000 (13:00 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Dec 2023 16:01:59 +0000 (17:01 +0100)
commit97774998f8e18dd1dfd728701ddbf82e73fa037f
tree60b49cf7b07d5cbe51483c507da882a32f5f4495
parent1f75542ce7c4e958386fb4932185842c3c8e1c4d
scripts/checkstack.pl: match all stack sizes for s390

[ Upstream commit aab1f809d7540def24498e81347740a7239a74d5 ]

For some unknown reason the regular expression for checkstack only matches
three digit numbers starting with the number "3", or any higher
number. Which means that it skips any stack sizes smaller than 304
bytes. This makes the checkstack script a bit less useful than it could be.

Change the script to match any number. To be filtered out stack sizes
can be configured with the min_stack variable, which omits any stack
frame sizes smaller than 100 bytes by default.

Tested-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Alexander Gordeev <agordeev@linux.ibm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
scripts/checkstack.pl