aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Luck <tony.luck@intel.com>2012-07-18 13:35:05 -0400
committerTony Luck <tony.luck@intel.com>2012-07-19 13:36:45 -0400
commite9c31b32f1cc6d3aa190119103622fb8e4c257b1 (patch)
tree81befbf8ec35edad58d5ea09a4321a284d13b138
parentf28fa729149c8b39699f7995ce5fff34c5145a9d (diff)
debug: Do not permit CONFIG_DEBUG_STACK_USAGE=y on IA64 or PARISC
The stack_not_used() function in <linux/sched.h> assumes that stacks grow downwards. This is not true on IA64 or PARISC, so this function would walk off in the wrong direction and into the weeds. Found on IA64 because of a compilation failure with recursive dependencies on IA64_TASKSIZE and IA64_THREAD_INFO_SIZE. Fixing the code is possible, but should be combined with other infrastructure additions to set up the "canary" at the end of the stack. Reported-by: Fengguang Wu <fengguang.wu@intel.com> (failed allmodconfig build) Signed-off-by: Tony Luck <tony.luck@intel.com>
-rw-r--r--lib/Kconfig.debug2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index a42d3ae3964..5d3e3288438 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -694,7 +694,7 @@ config STACKTRACE
694 694
695config DEBUG_STACK_USAGE 695config DEBUG_STACK_USAGE
696 bool "Stack utilization instrumentation" 696 bool "Stack utilization instrumentation"
697 depends on DEBUG_KERNEL 697 depends on DEBUG_KERNEL && !IA64 && !PARISC
698 help 698 help
699 Enables the display of the minimum amount of free stack which each 699 Enables the display of the minimum amount of free stack which each
700 task has ever had available in the sysrq-T and sysrq-P debug output. 700 task has ever had available in the sysrq-T and sysrq-P debug output.