diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2021-09-13 15:41:35 +0300 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2021-09-15 15:29:21 +0300 |
commit | f5711f9df9242446feccf2bdb6fdc06a72ca1010 (patch) | |
tree | fc82b203ea7eb6903609bfab1133f54259867e0b /arch/s390/Kconfig | |
parent | 948e50551b9a07c3ab6b9d208bb8f16fa1b2ad41 (diff) | |
download | linux-f5711f9df9242446feccf2bdb6fdc06a72ca1010.tar.xz |
s390: remove WARN_DYNAMIC_STACK
s390 is the only architecture which allows to set the
-mwarn-dynamicstack compile option. This however will also always
generate a warning with system call stack randomization, which uses
alloca to generate some random sized stack frame.
On the other hand Linus just enabled "-Werror" by default with commit
3fe617ccafd6 ("Enable '-Werror' by default for all kernel builds"),
which means compiles will always fail by default.
So instead of playing once again whack-a-mole for something which is
s390 specific, simply remove this option.
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/Kconfig')
-rw-r--r-- | arch/s390/Kconfig | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 2bd90c51efd3..b86de61b8caa 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig @@ -685,16 +685,6 @@ config STACK_GUARD The minimum size for the stack guard should be 256 for 31 bit and 512 for 64 bit. -config WARN_DYNAMIC_STACK - def_bool n - prompt "Emit compiler warnings for function with dynamic stack usage" - help - This option enables the compiler option -mwarn-dynamicstack. If the - compiler supports this options generates warnings for functions - that dynamically allocate stack space using alloca. - - Say N if you are unsure. - endmenu menu "I/O subsystem" |