From c8d6ef1f2e7b3807544532b2011628fb0b690ab8 Mon Sep 17 00:00:00 2001 From: Nick Alcock Date: Thu, 11 Aug 2011 16:48:19 +0100 Subject: [PATCH] dtrace: conflict with CONFIG_DEBUG_LOCK_ALLOC DTrace breaks when CONFIG_DEBUG_LOCK_ALLOC as this pulls in GPLONLY functions. Block this combination. Signed-off-by: Nick Alcock --- kernel/dtrace/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/dtrace/Kconfig b/kernel/dtrace/Kconfig index b920ff3b7eb1..faaa91101688 100644 --- a/kernel/dtrace/Kconfig +++ b/kernel/dtrace/Kconfig @@ -5,7 +5,7 @@ menuconfig DTRACE bool "DTrace (Dynamic Tracing) Support" default y - depends on X86_64 + depends on X86_64 && !DEBUG_LOCK_ALLOC select KALLSYMS help To be written. -- 2.50.1