From: Steven Rostedt Impact: fix alpha compiler builds The profile all branches tracer causes errors on alpha, due to the use of extern inlines. This patch disables it on alpha. Signed-off-by: Steven Rostedt --- kernel/trace/Kconfig | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/kernel/trace/Kconfig b/kernel/trace/Kconfig index dde1d46..2780665 100644 --- a/kernel/trace/Kconfig +++ b/kernel/trace/Kconfig @@ -183,9 +183,11 @@ config TRACE_BRANCH_PROFILING Say N if unsure. +# PROFILE_ALL_BRANCHES fails on alph due to extern inlines. config PROFILE_ALL_BRANCHES bool "Profile all if conditionals" depends on TRACE_BRANCH_PROFILING + depends on !ALPHA help This tracer profiles all branch conditions. Every if () taken in the kernel is recorded whether it hit or miss. -- 1.5.6.5 -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/