diff options
author | Milian Wolff <milian.wolff@kdab.com> | 2016-08-30 09:41:06 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-09-01 08:44:13 -0400 |
commit | 893c5c798be99bcff5b235402dbd21e5aa03d76e (patch) | |
tree | 1aa0e1ef70b0d790c4da4da4215e9aab3004153b /tools/perf | |
parent | 2a8d41b46540f224d77c255b5cc042d145e81b83 (diff) |
perf config: Show default report configuration in example and docs
Signed-off-by: Milian Wolff <milian.wolff@kdab.com>
LPU-Reference: 20160830134106.21240-2-milian.wolff@kdab.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/Documentation/perf-config.txt | 8 | ||||
-rw-r--r-- | tools/perf/Documentation/perfconfig.example | 9 |
2 files changed, 17 insertions, 0 deletions
diff --git a/tools/perf/Documentation/perf-config.txt b/tools/perf/Documentation/perf-config.txt index 68c89190e79c..cb081ac59fd1 100644 --- a/tools/perf/Documentation/perf-config.txt +++ b/tools/perf/Documentation/perf-config.txt | |||
@@ -110,6 +110,14 @@ Given a $HOME/.perfconfig like this: | |||
110 | order = caller | 110 | order = caller |
111 | sort-key = function | 111 | sort-key = function |
112 | 112 | ||
113 | [report] | ||
114 | # Defaults | ||
115 | sort-order = comm,dso,symbol | ||
116 | percent-limit = 0 | ||
117 | queue-size = 0 | ||
118 | children = true | ||
119 | group = true | ||
120 | |||
113 | Variables | 121 | Variables |
114 | ~~~~~~~~~ | 122 | ~~~~~~~~~ |
115 | 123 | ||
diff --git a/tools/perf/Documentation/perfconfig.example b/tools/perf/Documentation/perfconfig.example index 1d8d5bc4cd2d..2b477c1d1efe 100644 --- a/tools/perf/Documentation/perfconfig.example +++ b/tools/perf/Documentation/perfconfig.example | |||
@@ -27,3 +27,12 @@ | |||
27 | use_offset = true | 27 | use_offset = true |
28 | jump_arrows = true | 28 | jump_arrows = true |
29 | show_nr_jumps = false | 29 | show_nr_jumps = false |
30 | |||
31 | [report] | ||
32 | |||
33 | # Defaults | ||
34 | sort-order = comm,dso,symbol | ||
35 | percent-limit = 0 | ||
36 | queue-size = 0 | ||
37 | children = true | ||
38 | group = true | ||