[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-adc4bf9955856f8aa081ba613dbf56ffd664f0b7@git.kernel.org>
Date: Thu, 21 Jul 2011 10:11:16 GMT
From: tip-bot for David Ahern <dsahern@...il.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
fweisbec@...il.com, dsahern@...il.com, tglx@...utronix.de,
mingo@...e.hu
Subject: [tip:perf/core] perf script: Fix display of IP address for non-callchain path
Commit-ID: adc4bf9955856f8aa081ba613dbf56ffd664f0b7
Gitweb: http://git.kernel.org/tip/adc4bf9955856f8aa081ba613dbf56ffd664f0b7
Author: David Ahern <dsahern@...il.com>
AuthorDate: Mon, 30 May 2011 09:16:27 -0600
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Thu, 21 Jul 2011 10:09:28 +0200
perf script: Fix display of IP address for non-callchain path
Non-callchain path is using al.addr which prints as:
openssl 14564 17672.003587: 7862d _x86_64_AES_encrypt_compact
This should be sample->ip to print as:
openssl 14564 17672.003587: 3f7867862d _x86_64_AES_encrypt_compact
Signed-off-by: David Ahern <dsahern@...il.com>
Acked-by: Frederic Weisbecker <fweisbec@...il.com>
Cc: acme@...stprotocols.net
Cc: peterz@...radead.org
Cc: paulus@...ba.org
Link: http://lkml.kernel.org/r/1306768587-15376-1-git-send-email-dsahern@gmail.com
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
tools/perf/util/session.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c
index a3c13bc..72458d9 100644
--- a/tools/perf/util/session.c
+++ b/tools/perf/util/session.c
@@ -1269,7 +1269,7 @@ void perf_session__print_ip(union perf_event *event,
}
} else {
- printf("%16" PRIx64, al.addr);
+ printf("%16" PRIx64, sample->ip);
if (print_sym) {
if (al.sym && al.sym->name)
symname = al.sym->name;
--
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