aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelge Deller <[email protected]>2021-07-07 15:38:08 +0200
committerHelge Deller <[email protected]>2021-08-30 10:18:24 +0200
commit55b70eed81cba1331773d4aaf5cba2bb07475cd8 (patch)
tree4af484dbaf1c3b8caf7fcba113e7d3d740336078
parent7e07b7475b5274b4739511a0d81e29dd8198743b (diff)
parisc: Increase size of gcc stack frame check
parisc uses much bigger frames than other architectures, so increase the stack frame check value to avoid compiler warnings. Cc: Arnd Bergmann <[email protected]> Cc: Abd-Alrhman Masalkhi <[email protected]> Cc: Christoph Hellwig <[email protected]> Signed-off-by: Helge Deller <[email protected]>
-rw-r--r--lib/Kconfig.debug2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 5ddd575159fb..153c5a86aefa 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -346,7 +346,7 @@ config FRAME_WARN
int "Warn for stack frames larger than"
range 0 8192
default 2048 if GCC_PLUGIN_LATENT_ENTROPY
- default 1280 if (!64BIT && PARISC)
+ default 1536 if (!64BIT && PARISC)
default 1024 if (!64BIT && !PARISC)
default 2048 if 64BIT
help