Skip to content
Snippets Groups Projects
Commit 712afc7c authored by Tiezhu Yang's avatar Tiezhu Yang Committed by Andrew Morton
Browse files

scripts/checkstack.pl: change min_stack to 512 by default

According to Documentation/process/submit-checklist.rst, checkstack does
not point out problems explicitly, but any one function that uses more
than 512 bytes on the stack is a candidate for change, hence it is better
to omit any stack frame sizes smaller than 512 bytes, just change
min_stack to 512 by default.

Link: https://lkml.kernel.org/r/20231219125008.23007-5-yangtiezhu@loongson.cn


Signed-off-by: default avatarTiezhu Yang <yangtiezhu@loongson.cn>
Cc: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 66d25cbe
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,7 @@ my (@stack, $re, $dre, $sub, $x, $xs, $funcre, $min_stack); ...@@ -47,7 +47,7 @@ my (@stack, $re, $dre, $sub, $x, $xs, $funcre, $min_stack);
$min_stack = shift; $min_stack = shift;
if ($min_stack eq "" || $min_stack !~ /^\d+$/) { if ($min_stack eq "" || $min_stack !~ /^\d+$/) {
$min_stack = 100; $min_stack = 512;
} }
$x = "[0-9a-f]"; # hex character $x = "[0-9a-f]"; # hex character
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment