diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-11-11 03:05:16 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-11 02:59:20 -0500 |
commit | ae1e9130bfb9ad55eb97ec3fb17a122b7a118f98 (patch) | |
tree | fa37f195008d540a4a69e562f6796b23831f0b56 | |
parent | 6d21cd62516a9697cb7ec33cc52e6b814fb65a13 (diff) |
sched: rename SCHED_NO_NO_OMIT_FRAME_POINTER => SCHED_OMIT_FRAME_POINTER
Impact: cleanup, change .config option name
We had this ugly config name for a long time for hysteric raisons.
Rename it to a saner name.
We still cannot get rid of it completely, until /proc/<pid>/stack
usage replaces WCHAN usage for good.
We'll be able to do that in the v2.6.29/v2.6.30 timeframe.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | arch/ia64/Kconfig | 2 | ||||
-rw-r--r-- | arch/m32r/Kconfig | 2 | ||||
-rw-r--r-- | arch/mips/Kconfig | 2 | ||||
-rw-r--r-- | arch/powerpc/Kconfig | 2 | ||||
-rw-r--r-- | arch/x86/Kconfig | 2 | ||||
-rw-r--r-- | include/asm-m32r/system.h | 2 | ||||
-rw-r--r-- | kernel/Makefile | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig index 27eec71429b0..59d12788b60c 100644 --- a/arch/ia64/Kconfig +++ b/arch/ia64/Kconfig | |||
@@ -99,7 +99,7 @@ config GENERIC_IOMAP | |||
99 | bool | 99 | bool |
100 | default y | 100 | default y |
101 | 101 | ||
102 | config SCHED_NO_NO_OMIT_FRAME_POINTER | 102 | config SCHED_OMIT_FRAME_POINTER |
103 | bool | 103 | bool |
104 | default y | 104 | default y |
105 | 105 | ||
diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index dbaed4a63815..29047d5c259a 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig | |||
@@ -273,7 +273,7 @@ config GENERIC_CALIBRATE_DELAY | |||
273 | bool | 273 | bool |
274 | default y | 274 | default y |
275 | 275 | ||
276 | config SCHED_NO_NO_OMIT_FRAME_POINTER | 276 | config SCHED_OMIT_FRAME_POINTER |
277 | bool | 277 | bool |
278 | default y | 278 | default y |
279 | 279 | ||
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index f4af967a6b30..a5255e7c79e0 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
@@ -653,7 +653,7 @@ config GENERIC_CMOS_UPDATE | |||
653 | bool | 653 | bool |
654 | default y | 654 | default y |
655 | 655 | ||
656 | config SCHED_NO_NO_OMIT_FRAME_POINTER | 656 | config SCHED_OMIT_FRAME_POINTER |
657 | bool | 657 | bool |
658 | default y | 658 | default y |
659 | 659 | ||
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 525c13a4de93..adb23ea1c1ef 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -141,7 +141,7 @@ config GENERIC_NVRAM | |||
141 | bool | 141 | bool |
142 | default y if PPC32 | 142 | default y if PPC32 |
143 | 143 | ||
144 | config SCHED_NO_NO_OMIT_FRAME_POINTER | 144 | config SCHED_OMIT_FRAME_POINTER |
145 | bool | 145 | bool |
146 | default y | 146 | default y |
147 | 147 | ||
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 1d5550d19b66..74db682ec1ce 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -364,7 +364,7 @@ config X86_RDC321X | |||
364 | as R-8610-(G). | 364 | as R-8610-(G). |
365 | If you don't have one of these chips, you should say N here. | 365 | If you don't have one of these chips, you should say N here. |
366 | 366 | ||
367 | config SCHED_NO_NO_OMIT_FRAME_POINTER | 367 | config SCHED_OMIT_FRAME_POINTER |
368 | def_bool y | 368 | def_bool y |
369 | prompt "Single-depth WCHAN output" | 369 | prompt "Single-depth WCHAN output" |
370 | depends on X86 | 370 | depends on X86 |
diff --git a/include/asm-m32r/system.h b/include/asm-m32r/system.h index 70a57c8c002b..c980f5ba8de7 100644 --- a/include/asm-m32r/system.h +++ b/include/asm-m32r/system.h | |||
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #if defined(CONFIG_FRAME_POINTER) || \ | 25 | #if defined(CONFIG_FRAME_POINTER) || \ |
26 | !defined(CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER) | 26 | !defined(CONFIG_SCHED_OMIT_FRAME_POINTER) |
27 | #define M32R_PUSH_FP " push fp\n" | 27 | #define M32R_PUSH_FP " push fp\n" |
28 | #define M32R_POP_FP " pop fp\n" | 28 | #define M32R_POP_FP " pop fp\n" |
29 | #else | 29 | #else |
diff --git a/kernel/Makefile b/kernel/Makefile index e1af03972148..46e67a398495 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -91,7 +91,7 @@ obj-$(CONFIG_FUNCTION_TRACER) += trace/ | |||
91 | obj-$(CONFIG_TRACING) += trace/ | 91 | obj-$(CONFIG_TRACING) += trace/ |
92 | obj-$(CONFIG_SMP) += sched_cpupri.o | 92 | obj-$(CONFIG_SMP) += sched_cpupri.o |
93 | 93 | ||
94 | ifneq ($(CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER),y) | 94 | ifneq ($(CONFIG_SCHED_OMIT_FRAME_POINTER),y) |
95 | # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is | 95 | # According to Alan Modra <alan@linuxcare.com.au>, the -fno-omit-frame-pointer is |
96 | # needed for x86 only. Why this used to be enabled for all architectures is beyond | 96 | # needed for x86 only. Why this used to be enabled for all architectures is beyond |
97 | # me. I suspect most platforms don't need this, but until we know that for sure | 97 | # me. I suspect most platforms don't need this, but until we know that for sure |