mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/2] perf tools: Fix segfault when using srcline sort key
@ 2012-10-15  3:39 Namhyung Kim
  2012-10-15  3:39 ` [PATCH 2/2] perf tools: Remove warnings on JIT samples for " Namhyung Kim
  2012-10-20  0:57 ` [tip:perf/urgent] perf tools: Fix segfault when using " tip-bot for Namhyung Kim
  0 siblings, 2 replies; 4+ messages in thread
From: Namhyung Kim @ 2012-10-15  3:39 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Peter Zijlstra, Paul Mackerras, Ingo Molnar, LKML, Namhyung Kim

From: Namhyung Kim <namhyung.kim@lge.com>

The srcline sort key is for grouping samples based on their source
file and line number.  It use addr2line tool to get the information
but it requires dso name.  It caused a segfault when a sample does not
have the name by dereferencing a NULL pointer.  Fix it by using raw ip
addresses for those samples.

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
---
 tools/perf/util/sort.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tools/perf/util/sort.c b/tools/perf/util/sort.c
index b5b1b9211960..dd68f115d392 100644
--- a/tools/perf/util/sort.c
+++ b/tools/perf/util/sort.c
@@ -260,6 +260,9 @@ static int hist_entry__srcline_snprintf(struct hist_entry *self, char *bf,
 	if (path != NULL)
 		goto out_path;
 
+	if (!self->ms.map)
+		goto out_ip;
+
 	snprintf(cmd, sizeof(cmd), "addr2line -e %s %016" PRIx64,
 		 self->ms.map->dso->long_name, self->ip);
 	fp = popen(cmd, "r");
-- 
1.7.11.4


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-10-20  0:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-15  3:39 [PATCH 1/2] perf tools: Fix segfault when using srcline sort key Namhyung Kim
2012-10-15  3:39 ` [PATCH 2/2] perf tools: Remove warnings on JIT samples for " Namhyung Kim
2012-10-20  0:58   ` [tip:perf/urgent] " tip-bot for Namhyung Kim
2012-10-20  0:57 ` [tip:perf/urgent] perf tools: Fix segfault when using " tip-bot for Namhyung Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome