* [PATCH] perf script: Print callchains and symbols if they exist
@ 2013-11-15 3:38 David Ahern
2013-11-15 12:08 ` Frederic Weisbecker
0 siblings, 1 reply; 2+ messages in thread
From: David Ahern @ 2013-11-15 3:38 UTC (permalink / raw)
To: acme, linux-kernel; +Cc: David Ahern, Frederic Weisbecker
The intent of perf-script is to dump the events and information
in the file. H/W, S/W and raw events all dump callchains if they
are present; might as well make that the default for tracepoints
too.
Signed-off-by: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
---
tools/perf/builtin-script.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
index baf17989a216..6f96f8414047 100644
--- a/tools/perf/builtin-script.c
+++ b/tools/perf/builtin-script.c
@@ -99,7 +99,9 @@ static struct {
.fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
- PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
+ PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE |
+ PERF_OUTPUT_IP | PERF_OUTPUT_SYM |
+ PERF_OUTPUT_DSO,
},
[PERF_TYPE_RAW] = {
--
1.8.3.4 (Apple Git-47)
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] perf script: Print callchains and symbols if they exist
2013-11-15 3:38 [PATCH] perf script: Print callchains and symbols if they exist David Ahern
@ 2013-11-15 12:08 ` Frederic Weisbecker
0 siblings, 0 replies; 2+ messages in thread
From: Frederic Weisbecker @ 2013-11-15 12:08 UTC (permalink / raw)
To: David Ahern; +Cc: Arnaldo Melo, LKML
2013/11/15 David Ahern <dsahern@gmail.com>:
> The intent of perf-script is to dump the events and information
> in the file. H/W, S/W and raw events all dump callchains if they
> are present; might as well make that the default for tracepoints
> too.
>
> Signed-off-by: David Ahern <dsahern@gmail.com>
> Cc: Frederic Weisbecker <fweisbec@gmail.com>
> ---
> tools/perf/builtin-script.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
> index baf17989a216..6f96f8414047 100644
> --- a/tools/perf/builtin-script.c
> +++ b/tools/perf/builtin-script.c
> @@ -99,7 +99,9 @@ static struct {
>
> .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
> PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
> - PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE,
> + PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE |
> + PERF_OUTPUT_IP | PERF_OUTPUT_SYM |
> + PERF_OUTPUT_DSO,
Right it's important to dump callchains on tracepoint by default.
DSO are not important though because tracepoints always happen in the
kernel anyway. Although there is uprobes now hmm....
Same for ip/sym, most of the time the ip where the event happened is
not that relevant because it's often called from a same helper.
If SYM is required to dump callchains, I suggest that we only enable
SYM when callchains are present. Or have a seperate PERF_OUTPOUT
symbol for that may be.
Thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-11-15 12:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-15 3:38 [PATCH] perf script: Print callchains and symbols if they exist David Ahern
2013-11-15 12:08 ` Frederic Weisbecker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).