[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-a3c0cc2ac03bd9db032f590d59cdbf0b447503b8@git.kernel.org>
Date: Wed, 18 Feb 2015 10:25:10 -0800
From: tip-bot for Namhyung Kim <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: jolsa@...hat.com, mingo@...nel.org, a.p.zijlstra@...llo.nl,
acme@...hat.com, tglx@...utronix.de, linux-kernel@...r.kernel.org,
hpa@...or.com, namhyung@...nel.org
Subject: [tip:perf/core] perf tools: Fix a dso open fail message
Commit-ID: a3c0cc2ac03bd9db032f590d59cdbf0b447503b8
Gitweb: http://git.kernel.org/tip/a3c0cc2ac03bd9db032f590d59cdbf0b447503b8
Author: Namhyung Kim <namhyung@...nel.org>
AuthorDate: Fri, 30 Jan 2015 11:33:29 +0900
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Fri, 6 Feb 2015 11:46:36 +0100
perf tools: Fix a dso open fail message
It's not related to mmap, remove it from the message.
Signed-off-by: Namhyung Kim <namhyung@...nel.org>
Cc: Jiri Olsa <jolsa@...hat.com>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Link: http://lkml.kernel.org/r/1422585209-32742-3-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/util/dso.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/util/dso.c b/tools/perf/util/dso.c
index c2f7d3b..a8b3f18 100644
--- a/tools/perf/util/dso.c
+++ b/tools/perf/util/dso.c
@@ -240,7 +240,7 @@ static int do_open(char *name)
if (fd >= 0)
return fd;
- pr_debug("dso open failed, mmap: %s\n",
+ pr_debug("dso open failed: %s\n",
strerror_r(errno, sbuf, sizeof(sbuf)));
if (!dso__data_open_cnt || errno != EMFILE)
break;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists