[tip:tracing/core] tracing: Fix syscall tracing on !HAVE_FTRACE_SYSCALLS architectures

From: tip-bot for Ingo Molnar
Date: Thu Aug 13 2009 - 18:06:38 EST


Commit-ID: 60d970c254b95ec7a0fc4c590b510253987b64a0
Gitweb: http://git.kernel.org/tip/60d970c254b95ec7a0fc4c590b510253987b64a0
Author: Ingo Molnar <mingo@xxxxxxx>
AuthorDate: Thu, 13 Aug 2009 23:37:26 +0200
Committer: Ingo Molnar <mingo@xxxxxxx>
CommitDate: Thu, 13 Aug 2009 23:38:20 +0200

tracing: Fix syscall tracing on !HAVE_FTRACE_SYSCALLS architectures

The new syscall_regfunc()/unregfunc() functions rely on
the existence of TIF_SYSCALL_FTRACE - but that TIF flag
is only offered by HAVE_FTRACE_SYSCALLS.

Cc: Frederic Weisbecker <fweisbec@xxxxxxxxx>
Cc: Jason Baron <jbaron@xxxxxxxxxx>
Cc: Steven Rostedt <rostedt@xxxxxxxxxxx>
Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@xxxxxxx>


---
kernel/tracepoint.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/kernel/tracepoint.c b/kernel/tracepoint.c
index 070a42b..35dd27a 100644
--- a/kernel/tracepoint.c
+++ b/kernel/tracepoint.c
@@ -579,6 +579,8 @@ __initcall(init_tracepoints);

#endif /* CONFIG_MODULES */

+#ifdef CONFIG_FTRACE_SYSCALLS
+
static DEFINE_MUTEX(regfunc_mutex);
static int sys_tracepoint_refcount;

@@ -615,3 +617,4 @@ void syscall_unregfunc(void)
}
mutex_unlock(&regfunc_mutex);
}
+#endif
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/