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)
committerAlexander Gordeev <agordeev@linux.ibm.com>
Wed, 22 Nov 2023 14:06:23 +0000 (15:06 +0100)
commitaab1f809d7540def24498e81347740a7239a74d5
tree76c63a6c832caf58b186fc4cb8a149f8bdbbe3bf
parent0a9ace1117bbaa25687468af703b472235f5c210
scripts/checkstack.pl: match all stack sizes for s390

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>
scripts/checkstack.pl