~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/Documentation/perf-config.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/perf/Documentation/perf-config.txt (Version linux-6.12-rc7) and /tools/perf/Documentation/perf-config.txt (Version linux-5.12.19)


  1 perf-config(1)                                      1 perf-config(1)
  2 ==============                                      2 ==============
  3                                                     3 
  4 NAME                                                4 NAME
  5 ----                                                5 ----
  6 perf-config - Get and set variables in a confi      6 perf-config - Get and set variables in a configuration file.
  7                                                     7 
  8 SYNOPSIS                                            8 SYNOPSIS
  9 --------                                            9 --------
 10 [verse]                                            10 [verse]
 11 'perf config' [<file-option>] [section.name[=v     11 'perf config' [<file-option>] [section.name[=value] ...]
 12 or                                                 12 or
 13 'perf config' [<file-option>] -l | --list          13 'perf config' [<file-option>] -l | --list
 14                                                    14 
 15 DESCRIPTION                                        15 DESCRIPTION
 16 -----------                                        16 -----------
 17 You can manage variables in a configuration fi     17 You can manage variables in a configuration file with this command.
 18                                                    18 
 19 OPTIONS                                            19 OPTIONS
 20 -------                                            20 -------
 21                                                    21 
 22 -l::                                               22 -l::
 23 --list::                                           23 --list::
 24         Show current config variables, name an     24         Show current config variables, name and value, for all sections.
 25                                                    25 
 26 --user::                                           26 --user::
 27         For writing and reading options: write     27         For writing and reading options: write to user
 28         '$HOME/.perfconfig' file or read it.       28         '$HOME/.perfconfig' file or read it.
 29                                                    29 
 30 --system::                                         30 --system::
 31         For writing and reading options: write     31         For writing and reading options: write to system-wide
 32         '$(sysconfdir)/perfconfig' or read it.     32         '$(sysconfdir)/perfconfig' or read it.
 33                                                    33 
 34 CONFIGURATION FILE                                 34 CONFIGURATION FILE
 35 ------------------                                 35 ------------------
 36                                                    36 
 37 The perf configuration file contains many vari     37 The perf configuration file contains many variables to change various
 38 aspects of each of its tools, including output     38 aspects of each of its tools, including output, disk usage, etc.
 39 The '$HOME/.perfconfig' file is used to store      39 The '$HOME/.perfconfig' file is used to store a per-user configuration.
 40 The file '$(sysconfdir)/perfconfig' can be use     40 The file '$(sysconfdir)/perfconfig' can be used to
 41 store a system-wide default configuration.         41 store a system-wide default configuration.
 42                                                    42 
 43 One an disable reading config files by setting     43 One an disable reading config files by setting the PERF_CONFIG environment
 44 variable to /dev/null, or provide an alternate     44 variable to /dev/null, or provide an alternate config file by setting that
 45 variable.                                          45 variable.
 46                                                    46 
 47 When reading or writing, the values are read f     47 When reading or writing, the values are read from the system and user
 48 configuration files by default, and options '-     48 configuration files by default, and options '--system' and '--user'
 49 can be used to tell the command to read from o     49 can be used to tell the command to read from or write to only that location.
 50                                                    50 
 51 Syntax                                             51 Syntax
 52 ~~~~~~                                             52 ~~~~~~
 53                                                    53 
 54 The file consist of sections. A section starts     54 The file consist of sections. A section starts with its name
 55 surrounded by square brackets and continues ti     55 surrounded by square brackets and continues till the next section
 56 begins. Each variable must be in a section, an     56 begins. Each variable must be in a section, and have the form
 57 'name = value', for example:                       57 'name = value', for example:
 58                                                    58 
 59         [section]                                  59         [section]
 60                 name1 = value1                     60                 name1 = value1
 61                 name2 = value2                     61                 name2 = value2
 62                                                    62 
 63 Section names are case sensitive and can conta     63 Section names are case sensitive and can contain any characters except
 64 newline (double quote `"` and backslash have t     64 newline (double quote `"` and backslash have to be escaped as `\"` and `\\`,
 65 respectively). Section headers can't span mult     65 respectively). Section headers can't span multiple lines.
 66                                                    66 
 67 Example                                            67 Example
 68 ~~~~~~~                                            68 ~~~~~~~
 69                                                    69 
 70 Given a $HOME/.perfconfig like this:               70 Given a $HOME/.perfconfig like this:
 71                                                    71 
 72 #                                                  72 #
 73 # This is the config file, and                     73 # This is the config file, and
 74 # a '#' and ';' character indicates a comment      74 # a '#' and ';' character indicates a comment
 75 #                                                  75 #
 76                                                    76 
 77         [colors]                                   77         [colors]
 78                 # Color variables                  78                 # Color variables
 79                 top = red, default                 79                 top = red, default
 80                 medium = green, default            80                 medium = green, default
 81                 normal = lightgray, default        81                 normal = lightgray, default
 82                 selected = white, lightgray        82                 selected = white, lightgray
 83                 jump_arrows = blue, default        83                 jump_arrows = blue, default
 84                 addr = magenta, default            84                 addr = magenta, default
 85                 root = white, blue                 85                 root = white, blue
 86                                                    86 
 87         [tui]                                      87         [tui]
 88                 # Defaults if linked with libs     88                 # Defaults if linked with libslang
 89                 report = on                        89                 report = on
 90                 annotate = on                      90                 annotate = on
 91                 top = on                           91                 top = on
 92                                                    92 
 93         [buildid]                                  93         [buildid]
 94                 # Default, disable using /dev/     94                 # Default, disable using /dev/null
 95                 dir = ~/.debug                     95                 dir = ~/.debug
 96                                                    96 
 97         [annotate]                                 97         [annotate]
 98                 # Defaults                         98                 # Defaults
 99                 hide_src_code = false              99                 hide_src_code = false
100                 use_offset = true                 100                 use_offset = true
101                 jump_arrows = true                101                 jump_arrows = true
102                 show_nr_jumps = false             102                 show_nr_jumps = false
103                                                   103 
104         [help]                                    104         [help]
105                 # Format can be man, info, web    105                 # Format can be man, info, web or html
106                 format = man                      106                 format = man
107                 autocorrect = 0                   107                 autocorrect = 0
108                                                   108 
109         [ui]                                      109         [ui]
110                 show-headers = true               110                 show-headers = true
111                                                   111 
112         [call-graph]                              112         [call-graph]
113                 # fp (framepointer), dwarf        113                 # fp (framepointer), dwarf
114                 record-mode = fp                  114                 record-mode = fp
115                 print-type = graph                115                 print-type = graph
116                 order = caller                    116                 order = caller
117                 sort-key = function               117                 sort-key = function
118                                                   118 
119         [report]                                  119         [report]
120                 # Defaults                        120                 # Defaults
121                 sort_order = comm,dso,symbol      121                 sort_order = comm,dso,symbol
122                 percent-limit = 0                 122                 percent-limit = 0
123                 queue-size = 0                    123                 queue-size = 0
124                 children = true                   124                 children = true
125                 group = true                      125                 group = true
126                 skip-empty = true              << 
127                                                   126 
                                                   >> 127         [llvm]
                                                   >> 128                 dump-obj = true
                                                   >> 129                 clang-opt = -g
128                                                   130 
129 You can hide source code of annotate feature s    131 You can hide source code of annotate feature setting the config to false with
130                                                   132 
131         % perf config annotate.hide_src_code=t    133         % perf config annotate.hide_src_code=true
132                                                   134 
133 If you want to add or modify several config it    135 If you want to add or modify several config items, you can do like
134                                                   136 
135         % perf config ui.show-headers=false km    137         % perf config ui.show-headers=false kmem.default=slab
136                                                   138 
137 To modify the sort order of report functionali    139 To modify the sort order of report functionality in user config file(i.e. `~/.perfconfig`), do
138                                                   140 
139         % perf config --user report.sort-order    141         % perf config --user report.sort-order=srcline
140                                                   142 
141 To change colors of selected line to other for    143 To change colors of selected line to other foreground and background colors
142 in system config file (i.e. `$(sysconf)/perfco    144 in system config file (i.e. `$(sysconf)/perfconfig`), do
143                                                   145 
144         % perf config --system colors.selected    146         % perf config --system colors.selected=yellow,green
145                                                   147 
146 To query the record mode of call graph, do        148 To query the record mode of call graph, do
147                                                   149 
148         % perf config call-graph.record-mode      150         % perf config call-graph.record-mode
149                                                   151 
150 If you want to know multiple config key/value     152 If you want to know multiple config key/value pairs, you can do like
151                                                   153 
152         % perf config report.queue-size call-g    154         % perf config report.queue-size call-graph.order report.children
153                                                   155 
154 To query the config value of sort order of cal    156 To query the config value of sort order of call graph in user config file (i.e. `~/.perfconfig`), do
155                                                   157 
156         % perf config --user call-graph.sort-o    158         % perf config --user call-graph.sort-order
157                                                   159 
158 To query the config value of buildid directory    160 To query the config value of buildid directory in system config file (i.e. `$(sysconf)/perfconfig`), do
159                                                   161 
160         % perf config --system buildid.dir        162         % perf config --system buildid.dir
161                                                   163 
162 Variables                                         164 Variables
163 ~~~~~~~~~                                         165 ~~~~~~~~~
164                                                   166 
165 colors.*::                                        167 colors.*::
166         The variables for customizing the colo    168         The variables for customizing the colors used in the output for the
167         'report', 'top' and 'annotate' in the     169         'report', 'top' and 'annotate' in the TUI. They should specify the
168         foreground and background colors, sepa    170         foreground and background colors, separated by a comma, for example:
169                                                   171 
170                 medium = green, lightgray         172                 medium = green, lightgray
171                                                   173 
172         If you want to use the color configure    174         If you want to use the color configured for you terminal, just leave it
173         as 'default', for example:                175         as 'default', for example:
174                                                   176 
175                 medium = default, lightgray       177                 medium = default, lightgray
176                                                   178 
177         Available colors:                         179         Available colors:
178         red, yellow, green, cyan, gray, black,    180         red, yellow, green, cyan, gray, black, blue,
179         white, default, magenta, lightgray        181         white, default, magenta, lightgray
180                                                   182 
181         colors.top::                              183         colors.top::
182                 'top' means a overhead percent    184                 'top' means a overhead percentage which is more than 5%.
183                 And values of this variable sp    185                 And values of this variable specify percentage colors.
184                 Basic key values are foregroun    186                 Basic key values are foreground-color 'red' and
185                 background-color 'default'.       187                 background-color 'default'.
186         colors.medium::                           188         colors.medium::
187                 'medium' means a overhead perc    189                 'medium' means a overhead percentage which has more than 0.5%.
188                 Default values are 'green' and    190                 Default values are 'green' and 'default'.
189         colors.normal::                           191         colors.normal::
190                 'normal' means the rest of ove    192                 'normal' means the rest of overhead percentages
191                 except 'top', 'medium', 'selec    193                 except 'top', 'medium', 'selected'.
192                 Default values are 'lightgray'    194                 Default values are 'lightgray' and 'default'.
193         colors.selected::                         195         colors.selected::
194                 This selects the colors for th    196                 This selects the colors for the current entry in a list of entries
195                 from sub-commands (top, report    197                 from sub-commands (top, report, annotate).
196                 Default values are 'black' and    198                 Default values are 'black' and 'lightgray'.
197         colors.jump_arrows::                      199         colors.jump_arrows::
198                 Colors for jump arrows on asse    200                 Colors for jump arrows on assembly code listings
199                 such as 'jns', 'jmp', 'jane',     201                 such as 'jns', 'jmp', 'jane', etc.
200                 Default values are 'blue', 'de    202                 Default values are 'blue', 'default'.
201         colors.addr::                             203         colors.addr::
202                 This selects colors for addres    204                 This selects colors for addresses from 'annotate'.
203                 Default values are 'magenta',     205                 Default values are 'magenta', 'default'.
204         colors.root::                             206         colors.root::
205                 Colors for headers in the outp    207                 Colors for headers in the output of a sub-commands (top, report).
206                 Default values are 'white', 'b    208                 Default values are 'white', 'blue'.
207                                                   209 
208 core.*::                                          210 core.*::
209         core.proc-map-timeout::                   211         core.proc-map-timeout::
210                 Sets a timeout (in millisecond    212                 Sets a timeout (in milliseconds) for parsing /proc/<pid>/maps files.
211                 Can be overridden by the --pro    213                 Can be overridden by the --proc-map-timeout option on supported
212                 subcommands. The default timeo    214                 subcommands. The default timeout is 500ms.
213                                                   215 
214 tui.*, gtk.*::                                    216 tui.*, gtk.*::
215         Subcommands that can be configured her    217         Subcommands that can be configured here are 'top', 'report' and 'annotate'.
216         These values are booleans, for example    218         These values are booleans, for example:
217                                                   219 
218         [tui]                                     220         [tui]
219                 top = true                        221                 top = true
220                                                   222 
221         will make the TUI be the default for t    223         will make the TUI be the default for the 'top' subcommand. Those will be
222         available if the required libs were de    224         available if the required libs were detected at tool build time.
223                                                   225 
224 buildid.*::                                       226 buildid.*::
225         buildid.dir::                             227         buildid.dir::
226                 Each executable and shared lib    228                 Each executable and shared library in modern distributions comes with a
227                 content based identifier that,    229                 content based identifier that, if available, will be inserted in a
228                 'perf.data' file header to, at    230                 'perf.data' file header to, at analysis time find what is needed to do
229                 symbol resolution, code annota    231                 symbol resolution, code annotation, etc.
230                                                   232 
231                 The recording tools also store    233                 The recording tools also stores a hard link or copy in a per-user
232                 directory, $HOME/.debug/, of b    234                 directory, $HOME/.debug/, of binaries, shared libraries, /proc/kallsyms
233                 and /proc/kcore files to be us    235                 and /proc/kcore files to be used at analysis time.
234                                                   236 
235                 The buildid.dir variable can b    237                 The buildid.dir variable can be used to either change this directory
236                 cache location, or to disable     238                 cache location, or to disable it altogether. If you want to disable it,
237                 set buildid.dir to /dev/null.     239                 set buildid.dir to /dev/null. The default is $HOME/.debug
238                                                   240 
239 buildid-cache.*::                                 241 buildid-cache.*::
240         buildid-cache.debuginfod=URLs             242         buildid-cache.debuginfod=URLs
241                 Specify debuginfod URLs to be     243                 Specify debuginfod URLs to be used when retrieving perf.data binaries,
242                 it follows the same syntax as     244                 it follows the same syntax as the DEBUGINFOD_URLS variable, like:
243                                                   245 
244                   buildid-cache.debuginfod=htt    246                   buildid-cache.debuginfod=http://192.168.122.174:8002
245                                                   247 
246 annotate.*::                                      248 annotate.*::
247         These are in control of addresses, jum    249         These are in control of addresses, jump function, source code
248         in lines of assembly code from a speci    250         in lines of assembly code from a specific program.
249                                                   251 
250         annotate.addr2line::                   !! 252         annotate.disassembler_style:
251                 addr2line binary to use for fi << 
252                                                << 
253         annotate.objdump::                     << 
254                 objdump binary to use for disa << 
255                 including in the 'perf test' c << 
256                                                << 
257         annotate.disassembler_style::          << 
258                 Use this to change the default    253                 Use this to change the default disassembler style to some other value
259                 supported by binutils, such as    254                 supported by binutils, such as "intel", see the '-M' option help in the
260                 'objdump' man page.               255                 'objdump' man page.
261                                                   256 
262         annotate.hide_src_code::                  257         annotate.hide_src_code::
263                 If a program which is analyzed    258                 If a program which is analyzed has source code,
264                 this option lets 'annotate' pr    259                 this option lets 'annotate' print a list of assembly code with the source code.
265                 For example, let's see a part     260                 For example, let's see a part of a program. There're four lines.
266                 If this option is 'true', they    261                 If this option is 'true', they can be printed
267                 without source code from a pro    262                 without source code from a program as below.
268                                                   263 
269                 │        push   %rbp            264                 │        push   %rbp
270                 │        mov    %rsp,%rbp       265                 │        mov    %rsp,%rbp
271                 │        sub    $0x10,%rsp      266                 │        sub    $0x10,%rsp
272                 │        mov    (%rdi),%rdx     267                 │        mov    (%rdi),%rdx
273                                                   268 
274                 But if this option is 'false',    269                 But if this option is 'false', source code of the part
275                 can be also printed as below.     270                 can be also printed as below. Default is 'false'.
276                                                   271 
277                 │      struct rb_node *rb_ne    272                 │      struct rb_node *rb_next(const struct rb_node *node)
278                 │      {                        273                 │      {
279                 │        push   %rbp            274                 │        push   %rbp
280                 │        mov    %rsp,%rbp       275                 │        mov    %rsp,%rbp
281                 │        sub    $0x10,%rsp      276                 │        sub    $0x10,%rsp
282                 │              struct rb_nod    277                 │              struct rb_node *parent;
283                 │                               278                 │
284                 │              if (RB_EMPTY_    279                 │              if (RB_EMPTY_NODE(node))
285                 │        mov    (%rdi),%rdx     280                 │        mov    (%rdi),%rdx
286                 │              return n;        281                 │              return n;
287                                                   282 
288                 This option works with tui, st    283                 This option works with tui, stdio2 browsers.
289                                                   284 
290         annotate.use_offset::                     285         annotate.use_offset::
291                 Basing on a first address of a    286                 Basing on a first address of a loaded function, offset can be used.
292                 Instead of using original addr    287                 Instead of using original addresses of assembly code,
293                 addresses subtracted from a ba    288                 addresses subtracted from a base address can be printed.
294                 Let's illustrate an example.      289                 Let's illustrate an example.
295                 If a base address is 0XFFFFFFF    290                 If a base address is 0XFFFFFFFF81624d50 as below,
296                                                   291 
297                 ffffffff81624d50 <load0>          292                 ffffffff81624d50 <load0>
298                                                   293 
299                 an address on assembly code ha    294                 an address on assembly code has a specific absolute address as below
300                                                   295 
301                 ffffffff816250b8:│  mov    0    296                 ffffffff816250b8:│  mov    0x8(%r14),%rdi
302                                                   297 
303                 but if use_offset is 'true', a    298                 but if use_offset is 'true', an address subtracted from a base address is printed.
304                 Default is true. This option i    299                 Default is true. This option is only applied to TUI.
305                                                   300 
306                              368:│  mov    0    301                              368:│  mov    0x8(%r14),%rdi
307                                                   302 
308                 This option works with tui, st    303                 This option works with tui, stdio2 browsers.
309                                                   304 
310         annotate.jump_arrows::                    305         annotate.jump_arrows::
311                 There can be jump instruction     306                 There can be jump instruction among assembly code.
312                 Depending on a boolean value o    307                 Depending on a boolean value of jump_arrows,
313                 arrows can be printed or not w    308                 arrows can be printed or not which represent
314                 where do the instruction jump     309                 where do the instruction jump into as below.
315                                                   310 
316                 │     ┌──jmp    1333      311                 │     ┌──jmp    1333
317                 │     │  xchg   %ax,%ax       312                 │     │  xchg   %ax,%ax
318                 │1330:│  mov    %r15,%r10     313                 │1330:│  mov    %r15,%r10
319                 │1333:└─→cmp    %r15,%    314                 │1333:└─→cmp    %r15,%r14
320                                                   315 
321                 If jump_arrow is 'false', the     316                 If jump_arrow is 'false', the arrows isn't printed as below.
322                 Default is 'false'.               317                 Default is 'false'.
323                                                   318 
324                 │      ↓ jmp    1333          319                 │      ↓ jmp    1333
325                 │        xchg   %ax,%ax         320                 │        xchg   %ax,%ax
326                 │1330:   mov    %r15,%r10       321                 │1330:   mov    %r15,%r10
327                 │1333:   cmp    %r15,%r14       322                 │1333:   cmp    %r15,%r14
328                                                   323 
329                 This option works with tui bro    324                 This option works with tui browser.
330                                                   325 
331         annotate.show_linenr::                    326         annotate.show_linenr::
332                 When showing source code if th    327                 When showing source code if this option is 'true',
333                 line numbers are printed as be    328                 line numbers are printed as below.
334                                                   329 
335                 │1628         if (type & PER    330                 │1628         if (type & PERF_SAMPLE_IDENTIFIER) {
336                 │     ↓ jne    508            331                 │     ↓ jne    508
337                 │1628                 data->    332                 │1628                 data->id = *array;
338                 │1629                 array+    333                 │1629                 array++;
339                 │1630         }                 334                 │1630         }
340                                                   335 
341                 However if this option is 'fal    336                 However if this option is 'false', they aren't printed as below.
342                 Default is 'false'.               337                 Default is 'false'.
343                                                   338 
344                 │             if (type & PER    339                 │             if (type & PERF_SAMPLE_IDENTIFIER) {
345                 │     ↓ jne    508            340                 │     ↓ jne    508
346                 │                     data->    341                 │                     data->id = *array;
347                 │                     array+    342                 │                     array++;
348                 │             }                 343                 │             }
349                                                   344 
350                 This option works with tui, st    345                 This option works with tui, stdio2 browsers.
351                                                   346 
352         annotate.show_nr_jumps::                  347         annotate.show_nr_jumps::
353                 Let's see a part of assembly c    348                 Let's see a part of assembly code.
354                                                   349 
355                 │1382:   movb   $0x1,-0x270(    350                 │1382:   movb   $0x1,-0x270(%rbp)
356                                                   351 
357                 If use this, the number of bra    352                 If use this, the number of branches jumping to that address can be printed as below.
358                 Default is 'false'.               353                 Default is 'false'.
359                                                   354 
360                 │1 1382:   movb   $0x1,-0x27    355                 │1 1382:   movb   $0x1,-0x270(%rbp)
361                                                   356 
362                 This option works with tui, st    357                 This option works with tui, stdio2 browsers.
363                                                   358 
364         annotate.show_total_period::              359         annotate.show_total_period::
365                 To compare two records on an i    360                 To compare two records on an instruction base, with this option
366                 provided, display total number    361                 provided, display total number of samples that belong to a line
367                 in assembly code. If this opti    362                 in assembly code. If this option is 'true', total periods are printed
368                 instead of percent values as b    363                 instead of percent values as below.
369                                                   364 
370                   302 │      mov    %eax,%ea    365                   302 │      mov    %eax,%eax
371                                                   366 
372                 But if this option is 'false',    367                 But if this option is 'false', percent values for overhead are printed i.e.
373                 Default is 'false'.               368                 Default is 'false'.
374                                                   369 
375                 99.93 │      mov    %eax,%ea    370                 99.93 │      mov    %eax,%eax
376                                                   371 
377                 This option works with tui, st    372                 This option works with tui, stdio2, stdio browsers.
378                                                   373 
379         annotate.show_nr_samples::                374         annotate.show_nr_samples::
380                 By default perf annotate shows    375                 By default perf annotate shows percentage of samples. This option
381                 can be used to print absolute     376                 can be used to print absolute number of samples. Ex, when set as
382                 false:                            377                 false:
383                                                   378 
384                 Percent│                        379                 Percent│
385                  74.03 │      mov    %fs:0x2    380                  74.03 │      mov    %fs:0x28,%rax
386                                                   381 
387                 When set as true:                 382                 When set as true:
388                                                   383 
389                 Samples│                        384                 Samples│
390                      6 │      mov    %fs:0x2    385                      6 │      mov    %fs:0x28,%rax
391                                                   386 
392                 This option works with tui, st    387                 This option works with tui, stdio2, stdio browsers.
393                                                   388 
394         annotate.offset_level::                   389         annotate.offset_level::
395                 Default is '1', meaning just j    390                 Default is '1', meaning just jump targets will have offsets show right beside
396                 the instruction. When set to '    391                 the instruction. When set to '2' 'call' instructions will also have its offsets
397                 shown, 3 or higher will show o    392                 shown, 3 or higher will show offsets for all instructions.
398                                                   393 
399                 This option works with tui, st    394                 This option works with tui, stdio2 browsers.
400                                                   395 
401         annotate.demangle::                    << 
402                 Demangle symbol names to human << 
403                                                << 
404         annotate.demangle_kernel::             << 
405                 Demangle kernel symbol names t << 
406                                                << 
407 hist.*::                                          396 hist.*::
408         hist.percentage::                         397         hist.percentage::
409                 This option control the way to    398                 This option control the way to calculate overhead of filtered entries -
410                 that means the value of this o    399                 that means the value of this option is effective only if there's a
411                 filter (by comm, dso or symbol    400                 filter (by comm, dso or symbol name). Suppose a following example:
412                                                   401 
413                        Overhead  Symbols          402                        Overhead  Symbols
414                        ........  .......          403                        ........  .......
415                         33.33%     foo            404                         33.33%     foo
416                         33.33%     bar            405                         33.33%     bar
417                         33.33%     baz            406                         33.33%     baz
418                                                   407 
419                This is an original overhead an    408                This is an original overhead and we'll filter out the first 'foo'
420                entry. The value of 'relative'     409                entry. The value of 'relative' would increase the overhead of 'bar'
421                and 'baz' to 50.00% for each, w    410                and 'baz' to 50.00% for each, while 'absolute' would show their
422                current overhead (33.33%).         411                current overhead (33.33%).
423                                                   412 
424 ui.*::                                            413 ui.*::
425         ui.show-headers::                         414         ui.show-headers::
426                 This option controls display o    415                 This option controls display of column headers (like 'Overhead' and 'Symbol')
427                 in 'report' and 'top'. If this    416                 in 'report' and 'top'. If this option is false, they are hidden.
428                 This option is only applied to    417                 This option is only applied to TUI.
429                                                   418 
430 call-graph.*::                                    419 call-graph.*::
431         The following controls the handling of    420         The following controls the handling of call-graphs (obtained via the
432         -g/--call-graph options).                 421         -g/--call-graph options).
433                                                   422 
434         call-graph.record-mode::                  423         call-graph.record-mode::
435                 The mode for user space can be    424                 The mode for user space can be 'fp' (frame pointer), 'dwarf'
436                 and 'lbr'.  The value 'dwarf'     425                 and 'lbr'.  The value 'dwarf' is effective only if libunwind
437                 (or a recent version of libdw)    426                 (or a recent version of libdw) is present on the system;
438                 the value 'lbr' only works for    427                 the value 'lbr' only works for certain cpus. The method for
439                 kernel space is controlled not    428                 kernel space is controlled not by this option but by the
440                 kernel config (CONFIG_UNWINDER    429                 kernel config (CONFIG_UNWINDER_*).
441                                                   430 
442         call-graph.dump-size::                    431         call-graph.dump-size::
443                 The size of stack to dump in o    432                 The size of stack to dump in order to do post-unwinding. Default is 8192 (byte).
444                 When using dwarf into record-m    433                 When using dwarf into record-mode, the default size will be used if omitted.
445                                                   434 
446         call-graph.print-type::                   435         call-graph.print-type::
447                 The print-types can be graph (    436                 The print-types can be graph (graph absolute), fractal (graph relative),
448                 flat and folded. This option c    437                 flat and folded. This option controls a way to show overhead for each callchain
449                 entry. Suppose a following exa    438                 entry. Suppose a following example.
450                                                   439 
451                 Overhead  Symbols                 440                 Overhead  Symbols
452                 ........  .......                 441                 ........  .......
453                   40.00%  foo                     442                   40.00%  foo
454                           |                       443                           |
455                           ---foo                  444                           ---foo
456                              |                    445                              |
457                              |--50.00%--bar       446                              |--50.00%--bar
458                              |          main      447                              |          main
459                              |                    448                              |
460                               --50.00%--baz       449                               --50.00%--baz
461                                         main      450                                         main
462                                                   451 
463                 This output is a 'fractal' for    452                 This output is a 'fractal' format. The 'foo' came from 'bar' and 'baz' exactly
464                 half and half so 'fractal' sho    453                 half and half so 'fractal' shows 50.00% for each
465                 (meaning that it assumes 100%     454                 (meaning that it assumes 100% total overhead of 'foo').
466                                                   455 
467                 The 'graph' uses absolute over    456                 The 'graph' uses absolute overhead value of 'foo' as total so each of
468                 'bar' and 'baz' callchain will    457                 'bar' and 'baz' callchain will have 20.00% of overhead.
469                 If 'flat' is used, single colu    458                 If 'flat' is used, single column and linear exposure of call chains.
470                 'folded' mean call chains are     459                 'folded' mean call chains are displayed in a line, separated by semicolons.
471                                                   460 
472         call-graph.order::                        461         call-graph.order::
473                 This option controls print ord    462                 This option controls print order of callchains. The default is
474                 'callee' which means callee is    463                 'callee' which means callee is printed at top and then followed by its
475                 caller and so on. The 'caller'    464                 caller and so on. The 'caller' prints it in reverse order.
476                                                   465 
477                 If this option is not set and     466                 If this option is not set and report.children or top.children is
478                 set to true (or the equivalent    467                 set to true (or the equivalent command line option is given),
479                 the default value of this opti    468                 the default value of this option is changed to 'caller' for the
480                 execution of 'perf report' or     469                 execution of 'perf report' or 'perf top'. Other commands will
481                 still default to 'callee'.        470                 still default to 'callee'.
482                                                   471 
483         call-graph.sort-key::                     472         call-graph.sort-key::
484                 The callchains are merged if t    473                 The callchains are merged if they contain same information.
485                 The sort-key option determines    474                 The sort-key option determines a way to compare the callchains.
486                 A value of 'sort-key' can be '    475                 A value of 'sort-key' can be 'function' or 'address'.
487                 The default is 'function'.        476                 The default is 'function'.
488                                                   477 
489         call-graph.threshold::                    478         call-graph.threshold::
490                 When there're many callchains     479                 When there're many callchains it'd print tons of lines. So perf omits
491                 small callchains under a certa    480                 small callchains under a certain overhead (threshold) and this option
492                 control the threshold. Default    481                 control the threshold. Default is 0.5 (%). The overhead is calculated
493                 by value depends on call-graph    482                 by value depends on call-graph.print-type.
494                                                   483 
495         call-graph.print-limit::                  484         call-graph.print-limit::
496                 This is a maximum number of li    485                 This is a maximum number of lines of callchain printed for a single
497                 histogram entry. Default is 0     486                 histogram entry. Default is 0 which means no limitation.
498                                                   487 
499 report.*::                                        488 report.*::
500         report.sort_order::                       489         report.sort_order::
501                 Allows changing the default so    490                 Allows changing the default sort order from "comm,dso,symbol" to
502                 some other default, for instan    491                 some other default, for instance "sym,dso" may be more fitting for
503                 kernel developers.                492                 kernel developers.
504         report.percent-limit::                    493         report.percent-limit::
505                 This one is mostly the same as    494                 This one is mostly the same as call-graph.threshold but works for
506                 histogram entries. Entries hav    495                 histogram entries. Entries having an overhead lower than this
507                 percentage will not be printed    496                 percentage will not be printed. Default is '0'. If percent-limit
508                 is '10', only entries which ha    497                 is '10', only entries which have more than 10% of overhead will be
509                 printed.                          498                 printed.
510                                                   499 
511         report.queue-size::                       500         report.queue-size::
512                 This option sets up the maximu    501                 This option sets up the maximum allocation size of the internal
513                 event queue for ordering event    502                 event queue for ordering events. Default is 0, meaning no limit.
514                                                   503 
515         report.children::                         504         report.children::
516                 'Children' means functions cal    505                 'Children' means functions called from another function.
517                 If this option is true, 'perf     506                 If this option is true, 'perf report' cumulates callchains of children
518                 and show (accumulated) total o    507                 and show (accumulated) total overhead as well as 'Self' overhead.
519                 Please refer to the 'perf repo    508                 Please refer to the 'perf report' manual. The default is 'true'.
520                                                   509 
521         report.group::                            510         report.group::
522                 This option is to show event g    511                 This option is to show event group information together.
523                 Example output with this turne    512                 Example output with this turned on, notice that there is one column
524                 per event in the group, ref-cy    513                 per event in the group, ref-cycles and cycles:
525                                                   514 
526                 # group: {ref-cycles,cycles}      515                 # group: {ref-cycles,cycles}
527                 # ========                        516                 # ========
528                 #                                 517                 #
529                 # Samples: 7K of event 'anon g    518                 # Samples: 7K of event 'anon group { ref-cycles, cycles }'
530                 # Event count (approx.): 68761    519                 # Event count (approx.): 6876107743
531                 #                                 520                 #
532                 #         Overhead  Command       521                 #         Overhead  Command      Shared Object               Symbol
533                 # ................  .......  .    522                 # ................  .......  .................  ...................
534                 #                                 523                 #
535                     99.84%  99.76%  noploop  n    524                     99.84%  99.76%  noploop  noploop            [.] main
536                      0.07%   0.00%  noploop  l    525                      0.07%   0.00%  noploop  ld-2.15.so         [.] strcmp
537                      0.03%   0.00%  noploop  [    526                      0.03%   0.00%  noploop  [kernel.kallsyms]  [k] timerqueue_del
538                                                   527 
539         report.skip-empty::                    << 
540                 This option can change default << 
541                 If it's set true, 'perf report << 
542                                                << 
543 top.*::                                           528 top.*::
544         top.children::                            529         top.children::
545                 Same as 'report.children'. So     530                 Same as 'report.children'. So if it is enabled, the output of 'top'
546                 command will have 'Children' o    531                 command will have 'Children' overhead column as well as 'Self' overhead
547                 column by default.                532                 column by default.
548                 The default is 'true'.            533                 The default is 'true'.
549                                                   534 
550         top.call-graph::                          535         top.call-graph::
551                 This is identical to 'call-gra    536                 This is identical to 'call-graph.record-mode', except it is
552                 applicable only for 'top' subc    537                 applicable only for 'top' subcommand. This option ONLY setup
553                 the unwind method. To enable '    538                 the unwind method. To enable 'perf top' to actually use it,
554                 the command line option -g mus    539                 the command line option -g must be specified.
555                                                   540 
556 man.*::                                           541 man.*::
557         man.viewer::                              542         man.viewer::
558                 This option can assign a tool     543                 This option can assign a tool to view manual pages when 'help'
559                 subcommand was invoked. Suppor    544                 subcommand was invoked. Supported tools are 'man', 'woman'
560                 (with emacs client) and 'konqu    545                 (with emacs client) and 'konqueror'. Default is 'man'.
561                                                   546 
562                 New man viewer tool can be als    547                 New man viewer tool can be also added using 'man.<tool>.cmd'
563                 or use different path using 'm    548                 or use different path using 'man.<tool>.path' config option.
564                                                   549 
565 pager.*::                                         550 pager.*::
566         pager.<subcommand>::                      551         pager.<subcommand>::
567                 When the subcommand is run on     552                 When the subcommand is run on stdio, determine whether it uses
568                 pager or not based on this val    553                 pager or not based on this value. Default is 'unspecified'.
569                                                   554 
570 kmem.*::                                          555 kmem.*::
571         kmem.default::                            556         kmem.default::
572                 This option decides which allo    557                 This option decides which allocator is to be analyzed if neither
573                 '--slab' nor '--page' option i    558                 '--slab' nor '--page' option is used. Default is 'slab'.
574                                                   559 
575 record.*::                                        560 record.*::
576         record.build-id::                         561         record.build-id::
577                 This option can be 'cache', 'n    562                 This option can be 'cache', 'no-cache', 'skip' or 'mmap'.
578                 'cache' is to post-process dat    563                 'cache' is to post-process data and save/update the binaries into
579                 the build-id cache (in ~/.debu    564                 the build-id cache (in ~/.debug). This is the default.
580                 But if this option is 'no-cach    565                 But if this option is 'no-cache', it will not update the build-id cache.
581                 'skip' skips post-processing a    566                 'skip' skips post-processing and does not update the cache.
582                 'mmap' skips post-processing a    567                 'mmap' skips post-processing and reads build-ids from MMAP events.
583                                                   568 
584         record.call-graph::                       569         record.call-graph::
585                 This is identical to 'call-gra    570                 This is identical to 'call-graph.record-mode', except it is
586                 applicable only for 'record' s    571                 applicable only for 'record' subcommand. This option ONLY setup
587                 the unwind method. To enable '    572                 the unwind method. To enable 'perf record' to actually use it,
588                 the command line option -g mus    573                 the command line option -g must be specified.
589                                                   574 
590         record.aio::                              575         record.aio::
591                 Use 'n' control blocks in asyn    576                 Use 'n' control blocks in asynchronous (Posix AIO) trace writing
592                 mode ('n' default: 1, max: 4).    577                 mode ('n' default: 1, max: 4).
593                                                   578 
594         record.debuginfod::                    << 
595                 Specify debuginfod URL to be u << 
596                 it follows the same syntax as  << 
597                                                << 
598                   http://192.168.122.174:8002  << 
599                                                << 
600                 If the URLs is 'system', the v << 
601                 variable is used.              << 
602                                                << 
603 diff.*::                                          579 diff.*::
604         diff.order::                              580         diff.order::
605                 This option sets the number of    581                 This option sets the number of columns to sort the result.
606                 The default is 0, which means     582                 The default is 0, which means sorting by baseline.
607                 Setting it to 1 will sort the     583                 Setting it to 1 will sort the result by delta (or other
608                 compute method selected).         584                 compute method selected).
609                                                   585 
610         diff.compute::                            586         diff.compute::
611                 This options sets the method f    587                 This options sets the method for computing the diff result.
612                 Possible values are 'delta', '    588                 Possible values are 'delta', 'delta-abs', 'ratio' and
613                 'wdiff'.  Default is 'delta'.     589                 'wdiff'.  Default is 'delta'.
614                                                   590 
615 trace.*::                                         591 trace.*::
616         trace.add_events::                        592         trace.add_events::
617                 Allows adding a set of events     593                 Allows adding a set of events to add to the ones specified
618                 by the user, or use as a defau    594                 by the user, or use as a default one if none was specified.
619                 The initial use case is to add    595                 The initial use case is to add augmented_raw_syscalls.o to
620                 activate the 'perf trace' logi    596                 activate the 'perf trace' logic that looks for syscall
621                 pointer contents after the nor    597                 pointer contents after the normal tracepoint payload.
622                                                   598 
623         trace.args_alignment::                    599         trace.args_alignment::
624                 Number of columns to align the    600                 Number of columns to align the argument list, default is 70,
625                 use 40 for the strace default,    601                 use 40 for the strace default, zero to no alignment.
626                                                   602 
627         trace.no_inherit::                        603         trace.no_inherit::
628                 Do not follow children threads    604                 Do not follow children threads.
629                                                   605 
630         trace.show_arg_names::                    606         trace.show_arg_names::
631                 Should syscall argument names     607                 Should syscall argument names be printed? If not then trace.show_zeros
632                 will be set.                      608                 will be set.
633                                                   609 
634         trace.show_duration::                     610         trace.show_duration::
635                 Show syscall duration.            611                 Show syscall duration.
636                                                   612 
637         trace.show_prefix::                       613         trace.show_prefix::
638                 If set to 'yes' will show comm    614                 If set to 'yes' will show common string prefixes in tables. The default
639                 is to remove the common prefix    615                 is to remove the common prefix in things like "MAP_SHARED", showing just "SHARED".
640                                                   616 
641         trace.show_timestamp::                    617         trace.show_timestamp::
642                 Show syscall start timestamp.     618                 Show syscall start timestamp.
643                                                   619 
644         trace.show_zeros::                        620         trace.show_zeros::
645                 Do not suppress syscall argume    621                 Do not suppress syscall arguments that are equal to zero.
646                                                   622 
647         trace.tracepoint_beautifiers::            623         trace.tracepoint_beautifiers::
648                 Use "libtraceevent" to use tha    624                 Use "libtraceevent" to use that library to augment the tracepoint arguments,
649                 "libbeauty", the default, to u    625                 "libbeauty", the default, to use the same argument beautifiers used in the
650                 strace-like sys_enter+sys_exit    626                 strace-like sys_enter+sys_exit lines.
651                                                   627 
652 ftrace.*::                                        628 ftrace.*::
653         ftrace.tracer::                           629         ftrace.tracer::
654                 Can be used to select the defa    630                 Can be used to select the default tracer when neither -G nor
655                 -F option is not specified. Po    631                 -F option is not specified. Possible values are 'function' and
656                 'function_graph'.                 632                 'function_graph'.
657                                                   633 
                                                   >> 634 llvm.*::
                                                   >> 635         llvm.clang-path::
                                                   >> 636                 Path to clang. If omit, search it from $PATH.
                                                   >> 637 
                                                   >> 638         llvm.clang-bpf-cmd-template::
                                                   >> 639                 Cmdline template. Below lines show its default value. Environment
                                                   >> 640                 variable is used to pass options.
                                                   >> 641                 "$CLANG_EXEC -D__KERNEL__ -D__NR_CPUS__=$NR_CPUS "\
                                                   >> 642                 "-DLINUX_VERSION_CODE=$LINUX_VERSION_CODE "     \
                                                   >> 643                 "$CLANG_OPTIONS $PERF_BPF_INC_OPTIONS $KERNEL_INC_OPTIONS " \
                                                   >> 644                 "-Wno-unused-value -Wno-pointer-sign "          \
                                                   >> 645                 "-working-directory $WORKING_DIR "              \
                                                   >> 646                 "-c \"$CLANG_SOURCE\" -target bpf $CLANG_EMIT_LLVM -O2 -o - $LLVM_OPTIONS_PIPE"
                                                   >> 647 
                                                   >> 648         llvm.clang-opt::
                                                   >> 649                 Options passed to clang.
                                                   >> 650 
                                                   >> 651         llvm.kbuild-dir::
                                                   >> 652                 kbuild directory. If not set, use /lib/modules/`uname -r`/build.
                                                   >> 653                 If set to "" deliberately, skip kernel header auto-detector.
                                                   >> 654 
                                                   >> 655         llvm.kbuild-opts::
                                                   >> 656                 Options passed to 'make' when detecting kernel header options.
                                                   >> 657 
                                                   >> 658         llvm.dump-obj::
                                                   >> 659                 Enable perf dump BPF object files compiled by LLVM.
                                                   >> 660 
                                                   >> 661         llvm.opts::
                                                   >> 662                 Options passed to llc.
                                                   >> 663 
658 samples.*::                                       664 samples.*::
659                                                   665 
660         samples.context::                         666         samples.context::
661                 Define how many ns worth of ti    667                 Define how many ns worth of time to show
662                 around samples in perf report     668                 around samples in perf report sample context browser.
663                                                   669 
664 scripts.*::                                       670 scripts.*::
665                                                   671 
666         Any option defines a script that is ad    672         Any option defines a script that is added to the scripts menu
667         in the interactive perf browser and wh    673         in the interactive perf browser and whose output is displayed.
668         The name of the option is the name, th    674         The name of the option is the name, the value is a script command line.
669         The script gets the same options passe    675         The script gets the same options passed as a full perf script,
670         in particular -i perfdata file, --cpu,    676         in particular -i perfdata file, --cpu, --tid
671                                                   677 
672 convert.*::                                       678 convert.*::
673                                                   679 
674         convert.queue-size::                      680         convert.queue-size::
675                 Limit the size of ordered_even    681                 Limit the size of ordered_events queue, so we could control
676                 allocation size of perf data f    682                 allocation size of perf data files without proper finished
677                 round events.                     683                 round events.
678 stat.*::                                          684 stat.*::
679                                                   685 
680         stat.big-num::                            686         stat.big-num::
681                 (boolean) Change the default f    687                 (boolean) Change the default for "--big-num". To make
682                 "--no-big-num" the default, se    688                 "--no-big-num" the default, set "stat.big-num=false".
683                                                   689 
684 intel-pt.*::                                      690 intel-pt.*::
685                                                   691 
686         intel-pt.cache-divisor::                  692         intel-pt.cache-divisor::
687                                                   693 
688         intel-pt.mispred-all::                    694         intel-pt.mispred-all::
689                 If set, Intel PT decoder will     695                 If set, Intel PT decoder will set the mispred flag on all
690                 branches.                         696                 branches.
691                                                   697 
692         intel-pt.max-loops::                   << 
693                 If set and non-zero, the maxim << 
694                 branches decoded without consu << 
695                 the maximum is exceeded there  << 
696                 error. The default is 100000.  << 
697                                                << 
698 auxtrace.*::                                      698 auxtrace.*::
699                                                   699 
700         auxtrace.dumpdir::                        700         auxtrace.dumpdir::
701                 s390 only. The directory to sa    701                 s390 only. The directory to save the auxiliary trace buffer
702                 can be changed using this opti    702                 can be changed using this option. Ex, auxtrace.dumpdir=/tmp.
703                 If the directory does not exis    703                 If the directory does not exist or has the wrong file type,
704                 the current directory is used.    704                 the current directory is used.
705                                                   705 
706 itrace.*::                                     << 
707                                                << 
708         debug-log-buffer-size::                << 
709                 Log size in bytes to output wh << 
710                 Refer 'itrace' option of linkp << 
711                 linkperf:perf-report[1]. The d << 
712                                                << 
713 daemon.*::                                        706 daemon.*::
714                                                   707 
715         daemon.base::                             708         daemon.base::
716                 Base path for daemon data. All    709                 Base path for daemon data. All sessions data are stored under
717                 this path.                        710                 this path.
718                                                   711 
719 session-<NAME>.*::                                712 session-<NAME>.*::
720                                                   713 
721         session-<NAME>.run::                      714         session-<NAME>.run::
722                                                   715 
723                 Defines new record session for    716                 Defines new record session for daemon. The value is record's
724                 command line without the 'reco    717                 command line without the 'record' keyword.
                                                   >> 718 
725                                                   719 
726 SEE ALSO                                          720 SEE ALSO
727 --------                                          721 --------
728 linkperf:perf[1]                                  722 linkperf:perf[1]
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php