Commit-ID:  aec1930b0f6f281a0ca038cd03aceace3fe0bb61
Gitweb:     http://git.kernel.org/tip/aec1930b0f6f281a0ca038cd03aceace3fe0bb61
Author:     Arnaldo Carvalho de Melo <[email protected]>
AuthorDate: Thu, 27 Sep 2012 13:16:00 -0300
Committer:  Arnaldo Carvalho de Melo <[email protected]>
CommitDate: Thu, 27 Sep 2012 13:18:49 -0300

perf trace: Add aliases for some syscalls

What we get from audit_syscall_to_name isn't what we find in the
syscalls: tracepoint events, so add the alias that allows the tool to
find prctl, fstat, fstatat and stat.

Cc: David Ahern <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Mike Galbraith <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Stephane Eranian <[email protected]>
Link: http://lkml.kernel.org/n/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
---
 tools/perf/builtin-trace.c |   26 ++++++++++++++++++--------
 1 files changed, 18 insertions(+), 8 deletions(-)

diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index 5fa1820..8f113da 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -9,15 +9,20 @@
 
 static struct syscall_fmt {
        const char *name;
+       const char *alias;
        bool       errmsg;
        bool       timeout;
 } syscall_fmts[] = {
-       { .name     = "futex",    .errmsg = true, },
-       { .name     = "poll",     .errmsg = true, .timeout = true, },
-       { .name     = "ppoll",    .errmsg = true, .timeout = true, },
-       { .name     = "read",     .errmsg = true, },
-       { .name     = "recvfrom", .errmsg = true, },
-       { .name     = "select",   .errmsg = true, .timeout = true, },
+       { .name     = "arch_prctl", .errmsg = true, .alias = "prctl", },
+       { .name     = "fstat",      .errmsg = true, .alias = "newfstat", },
+       { .name     = "fstatat",    .errmsg = true, .alias = "newfstatat", },
+       { .name     = "futex",      .errmsg = true, },
+       { .name     = "poll",       .errmsg = true, .timeout = true, },
+       { .name     = "ppoll",      .errmsg = true, .timeout = true, },
+       { .name     = "read",       .errmsg = true, },
+       { .name     = "recvfrom",   .errmsg = true, },
+       { .name     = "select",     .errmsg = true, .timeout = true, },
+       { .name     = "stat",       .errmsg = true, .alias = "newstat", },
 };
 
 static int syscall_fmt__cmp(const void *name, const void *fmtp)
@@ -74,10 +79,15 @@ static int trace__read_syscall_info(struct trace *trace, 
int id)
        if (sc->name == NULL)
                return -1;
 
-       snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->name);
+       sc->fmt = syscall_fmt__find(sc->name);
 
+       snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", sc->name);
        sc->tp_format = event_format__new("syscalls", tp_name);
-       sc->fmt = syscall_fmt__find(sc->name);
+
+       if (sc->tp_format == NULL && sc->fmt && sc->fmt->alias) {
+               snprintf(tp_name, sizeof(tp_name), "sys_enter_%s", 
sc->fmt->alias);
+               sc->tp_format = event_format__new("syscalls", tp_name);
+       }
 
        return sc->tp_format != NULL ? 0 : -1;
 }
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to