diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2013-04-25 03:11:54 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2013-04-26 03:07:08 -0400 |
commit | 581618f226e83eb0fbe81ba2a623c6a55cbb7487 (patch) | |
tree | 3c7ee80e7166f5e639d04489640d1b778647b541 /arch/s390/Makefile | |
parent | 616498813b11ffefe1ed36b9f2e4fd2cdbd22f15 (diff) |
s390: remove small stack config option
We've seen repeatedly that 8KB stack size on 64 bit kernels
is not sufficient.
So simply remove the config option.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/Makefile')
-rw-r--r-- | arch/s390/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/s390/Makefile b/arch/s390/Makefile index 7e3ce78d4290..a7d68a467ce8 100644 --- a/arch/s390/Makefile +++ b/arch/s390/Makefile | |||
@@ -55,22 +55,12 @@ cflags-$(CONFIG_FRAME_POINTER) += -fno-optimize-sibling-calls | |||
55 | ifeq ($(call cc-option-yn,-mkernel-backchain),y) | 55 | ifeq ($(call cc-option-yn,-mkernel-backchain),y) |
56 | cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK | 56 | cflags-$(CONFIG_PACK_STACK) += -mkernel-backchain -D__PACK_STACK |
57 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK | 57 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK |
58 | cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK | ||
59 | aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK | ||
60 | ifdef CONFIG_SMALL_STACK | ||
61 | STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) ) | ||
62 | endif | ||
63 | endif | 58 | endif |
64 | 59 | ||
65 | # new style option for packed stacks | 60 | # new style option for packed stacks |
66 | ifeq ($(call cc-option-yn,-mpacked-stack),y) | 61 | ifeq ($(call cc-option-yn,-mpacked-stack),y) |
67 | cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK | 62 | cflags-$(CONFIG_PACK_STACK) += -mpacked-stack -D__PACK_STACK |
68 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK | 63 | aflags-$(CONFIG_PACK_STACK) += -D__PACK_STACK |
69 | cflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK | ||
70 | aflags-$(CONFIG_SMALL_STACK) += -D__SMALL_STACK | ||
71 | ifdef CONFIG_SMALL_STACK | ||
72 | STACK_SIZE := $(shell echo $$(($(STACK_SIZE)/2)) ) | ||
73 | endif | ||
74 | endif | 64 | endif |
75 | 65 | ||
76 | ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y) | 66 | ifeq ($(call cc-option-yn,-mstack-size=8192 -mstack-guard=128),y) |