diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2010-04-12 13:17:00 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2010-04-14 16:26:14 -0400 |
commit | df0faf4be02996135bc3a06b4f34360449c78084 (patch) | |
tree | a881d7b195d1759e470c0c024c52221508067ebf /tools/perf/util | |
parent | 48481938b02471d505296d7557ed296eb093d496 (diff) |
perf probe: Use the last field name as the argument name
Set the last field name to the argument name when the argument
is refering a data-structure member.
e.g.
./perf probe --add 'vfs_read file->f_mode'
Add new event:
probe:vfs_read (on vfs_read with f_mode=file->f_mode)
This probe records file->f_mode, but the argument name becomes "f_mode".
This enables perf-trace command to parse trace event format correctly.
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <20100412171700.3790.72961.stgit@localhost6.localdomain6>
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util')
-rw-r--r-- | tools/perf/util/probe-event.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/util/probe-event.c b/tools/perf/util/probe-event.c index ab6f53deabad..19de8b77973d 100644 --- a/tools/perf/util/probe-event.c +++ b/tools/perf/util/probe-event.c | |||
@@ -481,6 +481,10 @@ static void parse_perf_probe_arg(const char *str, struct perf_probe_arg *arg) | |||
481 | } while (tmp); | 481 | } while (tmp); |
482 | (*fieldp)->name = xstrdup(str); | 482 | (*fieldp)->name = xstrdup(str); |
483 | pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref); | 483 | pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref); |
484 | |||
485 | /* If no name is specified, set the last field name */ | ||
486 | if (!arg->name) | ||
487 | arg->name = xstrdup((*fieldp)->name); | ||
484 | } | 488 | } |
485 | 489 | ||
486 | /* Parse perf-probe event command */ | 490 | /* Parse perf-probe event command */ |