perf probe: Change event list format
authorMasami Hiramatsu <[email protected]>
Tue, 8 Dec 2009 22:02:40 +0000 (17:02 -0500)
committerIngo Molnar <[email protected]>
Wed, 9 Dec 2009 06:26:50 +0000 (07:26 +0100)
Change event list format for user readability. perf probe --list
shows event list in "[GROUP:EVENT] EVENT-DEFINITION" format, but
this format is different from the output of perf-list, and
EVENT-DEFINITION is a bit blunt. This patch changes the format to
more user friendly one.

Before:
[probe:schedule_0] schedule+10 prev cpu

After:
  probe:schedule_0                         (on schedule+10 with prev cpu)

Signed-off-by: Masami Hiramatsu <[email protected]>
Cc: Steven Rostedt <[email protected]>
Cc: Jim Keniston <[email protected]>
Cc: Ananth N Mavinakayanahalli <[email protected]>
Cc: Christoph Hellwig <[email protected]>
Cc: Frank Ch. Eigler <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Jason Baron <[email protected]>
Cc: K.Prasad <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Srikar Dronamraju <[email protected]>
Cc: Arnaldo Carvalho de Melo <[email protected]>
Cc: systemtap <[email protected]>
Cc: DLE <[email protected]>
LKML-Reference: <20091208220240[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
tools/perf/util/probe-event.c

index 88e180449933e62edd53445f1f585a8e8d0b4be7..a20e38273243dc105056bdd658925592cada7a95 100644 (file)
@@ -379,11 +379,29 @@ static void clear_probe_point(struct probe_point *pp)
        memset(pp, 0, sizeof(pp));
 }
 
+/* Show an event */
+static void show_perf_probe_event(const char *group, const char *event,
+                                 const char *place, struct probe_point *pp)
+{
+       int i;
+       char buf[128];
+
+       e_snprintf(buf, 128, "%s:%s", group, event);
+       printf("  %-40s (on %s", buf, place);
+
+       if (pp->nr_args > 0) {
+               printf(" with");
+               for (i = 0; i < pp->nr_args; i++)
+                       printf(" %s", pp->args[i]);
+       }
+       printf(")\n");
+}
+
 /* List up current perf-probe events */
 void show_perf_probe_events(void)
 {
        unsigned int i;
-       int fd;
+       int fd, nr;
        char *group, *event;
        struct probe_point pp;
        struct strlist *rawlist;
@@ -396,8 +414,13 @@ void show_perf_probe_events(void)
        for (i = 0; i < strlist__nr_entries(rawlist); i++) {
                ent = strlist__entry(rawlist, i);
                parse_trace_kprobe_event(ent->s, &group, &event, &pp);
+               /* Synthesize only event probe point */
+               nr = pp.nr_args;
+               pp.nr_args = 0;
                synthesize_perf_probe_event(&pp);
-               printf("[%s:%s]\t%s\n", group, event, pp.probes[0]);
+               pp.nr_args = nr;
+               /* Show an event */
+               show_perf_probe_event(group, event, pp.probes[0], &pp);
                free(group);
                free(event);
                clear_probe_point(&pp);