diff options
author | Jason Baron <jbaron@redhat.com> | 2009-08-10 16:52:13 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2009-08-11 14:35:25 -0400 |
commit | eeac19a7efa150231e4a6bb110d6f27500bcc8ce (patch) | |
tree | 99b59b07b3bd56c8ce1a352081280c8de4c177bb /arch/x86/kernel/ftrace.c | |
parent | 7770841e63730d62928b0879498064e9614b2ce0 (diff) |
tracing: Map syscall name to number
Add a new function to support translating a syscall name to number at
runtime.
This allows the syscall event tracer to map syscall names to number.
Signed-off-by: Jason Baron <jbaron@redhat.com>
Cc: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Cc: Jiaying Zhang <jiayingz@google.com>
Cc: Martin Bligh <mbligh@google.com>
Cc: Li Zefan <lizf@cn.fujitsu.com>
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'arch/x86/kernel/ftrace.c')
-rw-r--r-- | arch/x86/kernel/ftrace.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/x86/kernel/ftrace.c b/arch/x86/kernel/ftrace.c index 8e9663413b7f..afb31d72618d 100644 --- a/arch/x86/kernel/ftrace.c +++ b/arch/x86/kernel/ftrace.c | |||
@@ -500,6 +500,22 @@ struct syscall_metadata *syscall_nr_to_meta(int nr) | |||
500 | return syscalls_metadata[nr]; | 500 | return syscalls_metadata[nr]; |
501 | } | 501 | } |
502 | 502 | ||
503 | int syscall_name_to_nr(char *name) | ||
504 | { | ||
505 | int i; | ||
506 | |||
507 | if (!syscalls_metadata) | ||
508 | return -1; | ||
509 | |||
510 | for (i = 0; i < FTRACE_SYSCALL_MAX; i++) { | ||
511 | if (syscalls_metadata[i]) { | ||
512 | if (!strcmp(syscalls_metadata[i]->name, name)) | ||
513 | return i; | ||
514 | } | ||
515 | } | ||
516 | return -1; | ||
517 | } | ||
518 | |||
503 | void arch_init_ftrace_syscalls(void) | 519 | void arch_init_ftrace_syscalls(void) |
504 | { | 520 | { |
505 | int i; | 521 | int i; |