Re: [PATCH 1/7] tracing: Add syscall tracepoints - s390 arch update

From: Frederic Weisbecker
Date: Thu Aug 27 2009 - 13:50:19 EST


Oh, I forgot to put the
Acked-by: Heiko Carstens <heiko.carstens@xxxxxxxxxx> on this one.

Sorry...


On Thu, Aug 27, 2009 at 07:43:29PM +0200, Frederic Weisbecker wrote:
> From: Hendrik Brueckner <brueckner@xxxxxxxxxxxxxxxxxx>
>
> This patch includes s390 arch updates to synchronize with latest
> core changes in the syscalls tracing area.
>
> - tracing: Map syscall name to number (syscall_name_to_nr())
> - tracing: Call arch_init_ftrace_syscalls at boot
> - tracing: add support tracepoint ids (set_syscall_{enter,exit}_id())
>
> Signed-off-by: Hendrik Brueckner <brueckner@xxxxxxxxxxxxxxxxxx>
> Cc: Jason Baron <jbaron@xxxxxxxxxx>
> Cc: Frederic Weisbecker <fweisbec@xxxxxxxxx>
> Cc: Ingo Molnar <mingo@xxxxxxx>
> Cc: Lai Jiangshan <laijs@xxxxxxxxxxxxxx>
> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx>
> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
> Cc: Mathieu Desnoyers <mathieu.desnoyers@xxxxxxxxxx>
> Cc: Jiaying Zhang <jiayingz@xxxxxxxxxx>
> Cc: Martin Bligh <mbligh@xxxxxxxxxx>
> Cc: Li Zefan <lizf@xxxxxxxxxxxxxx>
> Cc: Martin Schwidefsky <schwidefsky@xxxxxxxxxx>
> Cc: Paul Mundt <lethal@xxxxxxxxxxxx>
> LKML-Reference: <20090825123111.GD4639@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
> Signed-off-by: Frederic Weisbecker <fweisbec@xxxxxxxxx>
> ---
> arch/s390/kernel/ftrace.c | 36 +++++++++++++++++++++++++++---------
> 1 files changed, 27 insertions(+), 9 deletions(-)
>
> diff --git a/arch/s390/kernel/ftrace.c b/arch/s390/kernel/ftrace.c
> index 3e298e6..57bdcb1 100644
> --- a/arch/s390/kernel/ftrace.c
> +++ b/arch/s390/kernel/ftrace.c
> @@ -220,6 +220,29 @@ struct syscall_metadata *syscall_nr_to_meta(int nr)
> return syscalls_metadata[nr];
> }
>
> +int syscall_name_to_nr(char *name)
> +{
> + int i;
> +
> + if (!syscalls_metadata)
> + return -1;
> + for (i = 0; i < NR_syscalls; i++)
> + if (syscalls_metadata[i])
> + if (!strcmp(syscalls_metadata[i]->name, name))
> + return i;
> + return -1;
> +}
> +
> +void set_syscall_enter_id(int num, int id)
> +{
> + syscalls_metadata[num]->enter_id = id;
> +}
> +
> +void set_syscall_exit_id(int num, int id)
> +{
> + syscalls_metadata[num]->exit_id = id;
> +}
> +
> static struct syscall_metadata *find_syscall_meta(unsigned long syscall)
> {
> struct syscall_metadata *start;
> @@ -237,24 +260,19 @@ static struct syscall_metadata *find_syscall_meta(unsigned long syscall)
> return NULL;
> }
>
> -void arch_init_ftrace_syscalls(void)
> +static int __init arch_init_ftrace_syscalls(void)
> {
> struct syscall_metadata *meta;
> int i;
> - static atomic_t refs;
> -
> - if (atomic_inc_return(&refs) != 1)
> - goto out;
> syscalls_metadata = kzalloc(sizeof(*syscalls_metadata) * NR_syscalls,
> GFP_KERNEL);
> if (!syscalls_metadata)
> - goto out;
> + return -ENOMEM;
> for (i = 0; i < NR_syscalls; i++) {
> meta = find_syscall_meta((unsigned long)sys_call_table[i]);
> syscalls_metadata[i] = meta;
> }
> - return;
> -out:
> - atomic_dec(&refs);
> + return 0;
> }
> +arch_initcall(arch_init_ftrace_syscalls);
> #endif
> --
> 1.6.2.3
>

--
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/