From: Randy Dunlap Date: Thu, 19 May 2011 17:08:27 +0000 (-0700) Subject: dtrace: systrace should depend on FTRACE_SYSCALLS. X-Git-Tag: v4.1.12-92~313^2~193 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c7927c711c67ff822ecc1ed7452d4f09f64ea210;p=users%2Fjedix%2Flinux-maple.git dtrace: systrace should depend on FTRACE_SYSCALLS. This is because systrace uses syscall_nr_to_meta, which is only available when FTRACE_SYSCALLS is enabled. Signed-off-by: Randy Dunlap --- diff --git a/kernel/dtrace/Kconfig b/kernel/dtrace/Kconfig index 72a1f2aca856a..b5ba8e15b1157 100644 --- a/kernel/dtrace/Kconfig +++ b/kernel/dtrace/Kconfig @@ -53,6 +53,7 @@ config DT_SDT config DT_SYSTRACE tristate "System Call Tracing" + depends on FTRACE_SYSCALLS default m help To be written.