diff options
author | Namhyung Kim <namhyung@kernel.org> | 2013-10-30 04:05:55 -0400 |
---|---|---|
committer | Jiri Olsa <jolsa@kernel.org> | 2014-06-01 08:35:04 -0400 |
commit | 793aaaabb79803a0154fc6a98c472a29bb6d5cc9 (patch) | |
tree | 7e0f3b9584830fb4fabb43dabde567af71dbd6d8 /tools/perf/Documentation | |
parent | 77284de326e6d8c3b8e866cda5b415c86b522e61 (diff) |
perf report: Add --children option
The --children option is for showing accumulated overhead (period)
value as well as self overhead.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Tested-by: Arun Sharma <asharma@fb.com>
Tested-by: Rodrigo Campos <rodrigo@sdfg.com.ar>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/r/1401335910-16832-16-git-send-email-namhyung@kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Diffstat (limited to 'tools/perf/Documentation')
-rw-r--r-- | tools/perf/Documentation/perf-report.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/perf/Documentation/perf-report.txt b/tools/perf/Documentation/perf-report.txt index a1b5185402d5..cefdf430d1b4 100644 --- a/tools/perf/Documentation/perf-report.txt +++ b/tools/perf/Documentation/perf-report.txt | |||
@@ -111,7 +111,7 @@ OPTIONS | |||
111 | --fields=:: | 111 | --fields=:: |
112 | Specify output field - multiple keys can be specified in CSV format. | 112 | Specify output field - multiple keys can be specified in CSV format. |
113 | Following fields are available: | 113 | Following fields are available: |
114 | overhead, overhead_sys, overhead_us, sample and period. | 114 | overhead, overhead_sys, overhead_us, overhead_children, sample and period. |
115 | Also it can contain any sort key(s). | 115 | Also it can contain any sort key(s). |
116 | 116 | ||
117 | By default, every sort keys not specified in -F will be appended | 117 | By default, every sort keys not specified in -F will be appended |
@@ -163,6 +163,11 @@ OPTIONS | |||
163 | 163 | ||
164 | Default: fractal,0.5,callee,function. | 164 | Default: fractal,0.5,callee,function. |
165 | 165 | ||
166 | --children:: | ||
167 | Accumulate callchain of children to parent entry so that then can | ||
168 | show up in the output. The output will have a new "Children" column | ||
169 | and will be sorted on the data. It requires callchains are recorded. | ||
170 | |||
166 | --max-stack:: | 171 | --max-stack:: |
167 | Set the stack depth limit when parsing the callchain, anything | 172 | Set the stack depth limit when parsing the callchain, anything |
168 | beyond the specified depth will be ignored. This is a trade-off | 173 | beyond the specified depth will be ignored. This is a trade-off |