summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMasami Hiramatsu <mhiramat@kernel.org>2019-09-01 12:03:08 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-01-27 14:46:45 +0100
commit236a45c27006a0c73f763240531a19a5fd6a5255 (patch)
treeae174181cd8a088e792ea51ee3b8cc0d03b8d678 /arch
parent0d9754bd7419b466b47723781dd98b3a4c56fbe1 (diff)
downloadlinux-stable-236a45c27006a0c73f763240531a19a5fd6a5255.tar.gz
linux-stable-236a45c27006a0c73f763240531a19a5fd6a5255.tar.bz2
linux-stable-236a45c27006a0c73f763240531a19a5fd6a5255.zip
x86, perf: Fix the dependency of the x86 insn decoder selftest
[ Upstream commit 7720804a2ae46c90265a32c81c45fb6f8d2f4e8b ] Since x86 instruction decoder is not only for kprobes, it should be tested when the insn.c is compiled. (e.g. perf is enabled but kprobes is disabled) Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Thomas Gleixner <tglx@linutronix.de> Fixes: cbe5c34c8c1f ("x86: Compile insn.c and inat.c only for KPROBES") Signed-off-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/Kconfig.debug2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig.debug b/arch/x86/Kconfig.debug
index 6293a8768a91..bec0952c5595 100644
--- a/arch/x86/Kconfig.debug
+++ b/arch/x86/Kconfig.debug
@@ -189,7 +189,7 @@ config HAVE_MMIOTRACE_SUPPORT
config X86_DECODER_SELFTEST
bool "x86 instruction decoder selftest"
- depends on DEBUG_KERNEL && KPROBES
+ depends on DEBUG_KERNEL && INSTRUCTION_DECODER
depends on !COMPILE_TEST
---help---
Perform x86 instruction decoder selftests at build time.