aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-trace.c
diff options
context:
space:
mode:
authorTaeung Song <treeze.taeung@gmail.com>2014-09-24 10:33:37 +0900
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-09-26 12:32:58 -0300
commit52e0283497ccb1e675d56c9499cc2cc5ec271094 (patch)
treefa77ce32a71cb84c7372b5de67efa85fa04636f9 /tools/perf/builtin-trace.c
parentperf tools: Fix perf record as non root with kptr_restrict == 1 (diff)
downloadlinux-dev-52e0283497ccb1e675d56c9499cc2cc5ec271094.tar.xz
linux-dev-52e0283497ccb1e675d56c9499cc2cc5ec271094.zip
perf tools: Modify error code for when perf_session__new() fails
Because perf_session__new() can fail for more reasons than just ENOMEM, modify error code(ENOMEM or EINVAL) to -1. Signed-off-by: Taeung Song <treeze.taeung@gmail.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Link: http://lkml.kernel.org/r/1411522417-9917-1-git-send-email-treeze.taeung@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-trace.c')
-rw-r--r--tools/perf/builtin-trace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index fe39dc620179..c70e69ea1c5d 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -2250,7 +2250,7 @@ static int trace__replay(struct trace *trace)
session = perf_session__new(&file, false, &trace->tool);
if (session == NULL)
- return -ENOMEM;
+ return -1;
if (symbol__init(&session->header.env) < 0)
goto out;