aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2013-08-26 10:28:34 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-08-26 16:25:50 -0400
commitda3c9a448af7ab2beab62cfff42bdea9590d9bea (patch)
tree9a5a74aa5186d1c59d3fb242dba5e727294a8798 /tools/perf
parent13d4ff3eb36474728be2acfa773b31ff39f3ea4d (diff)
perf trace: Simplify sys_exit return printing
Avoiding multiple sc->fmt != NULL tests. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-w28d1o3uslden0k57653kda7@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/builtin-trace.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index 86568ed53ac4..9e23660d96eb 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -464,16 +464,19 @@ static int trace__sys_exit(struct trace *trace, struct perf_evsel *evsel,
464 fprintf(trace->output, "]: %s()", sc->name); 464 fprintf(trace->output, "]: %s()", sc->name);
465 } 465 }
466 466
467 if (ret < 0 && sc->fmt && sc->fmt->errmsg) { 467 if (sc->fmt == NULL) {
468signed_print:
469 fprintf(trace->output, ") = %d", ret);
470 } else if (ret < 0 && sc->fmt->errmsg) {
468 char bf[256]; 471 char bf[256];
469 const char *emsg = strerror_r(-ret, bf, sizeof(bf)), 472 const char *emsg = strerror_r(-ret, bf, sizeof(bf)),
470 *e = audit_errno_to_name(-ret); 473 *e = audit_errno_to_name(-ret);
471 474
472 fprintf(trace->output, ") = -1 %s %s", e, emsg); 475 fprintf(trace->output, ") = -1 %s %s", e, emsg);
473 } else if (ret == 0 && sc->fmt && sc->fmt->timeout) 476 } else if (ret == 0 && sc->fmt->timeout)
474 fprintf(trace->output, ") = 0 Timeout"); 477 fprintf(trace->output, ") = 0 Timeout");
475 else 478 else
476 fprintf(trace->output, ") = %d", ret); 479 goto signed_print;
477 480
478 fputc('\n', trace->output); 481 fputc('\n', trace->output);
479out: 482out: