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 /kernel/Makefile | |
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>
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |