2009-04-20 21:58:01 +08:00
|
|
|
perf-record(1)
|
2009-05-30 18:38:51 +08:00
|
|
|
==============
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2009-05-27 15:33:18 +08:00
|
|
|
perf-record - Run a command and record its profile into perf.data
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] <command>
|
2009-05-28 22:25:34 +08:00
|
|
|
'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] -- <command> [<options>]
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
This command runs a command and gathers a performance counter profile
|
2009-05-27 15:33:18 +08:00
|
|
|
from it, into perf.data - without displaying anything.
|
2009-04-20 21:58:01 +08:00
|
|
|
|
|
|
|
This file can then be inspected later on, using 'perf report'.
|
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
<command>...::
|
|
|
|
Any command you can specify in a shell.
|
|
|
|
|
|
|
|
-e::
|
|
|
|
--event=::
|
2009-11-23 22:42:35 +08:00
|
|
|
Select the PMU event. Selection can be:
|
2009-04-20 21:58:01 +08:00
|
|
|
|
2009-11-23 22:42:35 +08:00
|
|
|
- a symbolic event name (use 'perf list' to list all events)
|
|
|
|
|
|
|
|
- a raw PMU event (eventsel+umask) in the form of rNNN where NNN is a
|
|
|
|
hexadecimal event descriptor.
|
|
|
|
|
2015-01-08 09:13:53 +08:00
|
|
|
- a symbolically formed PMU event like 'pmu/param1=0x3,param2/' where
|
|
|
|
'param1', 'param2', etc are defined as formats for the PMU in
|
2016-09-23 22:38:33 +08:00
|
|
|
/sys/bus/event_source/devices/<pmu>/format/*.
|
2015-01-08 09:13:53 +08:00
|
|
|
|
|
|
|
- a symbolically formed event like 'pmu/config=M,config1=N,config3=K/'
|
|
|
|
|
|
|
|
where M, N, K are numbers (in decimal, hex, octal format). Acceptable
|
|
|
|
values for each of 'config', 'config1' and 'config2' are defined by
|
2016-09-23 22:38:33 +08:00
|
|
|
corresponding entries in /sys/bus/event_source/devices/<pmu>/format/*
|
2015-01-08 09:13:53 +08:00
|
|
|
param1 and param2 are defined as formats for the PMU in:
|
2016-09-23 22:38:33 +08:00
|
|
|
/sys/bus/event_source/devices/<pmu>/format/*
|
2015-01-08 09:13:53 +08:00
|
|
|
|
2015-07-08 16:44:54 +08:00
|
|
|
There are also some params which are not defined in .../<pmu>/format/*.
|
2015-07-29 17:42:11 +08:00
|
|
|
These params can be used to overload default config values per event.
|
2015-07-08 16:44:54 +08:00
|
|
|
Here is a list of the params.
|
|
|
|
- 'period': Set event sampling period
|
2015-08-09 14:45:23 +08:00
|
|
|
- 'freq': Set event sampling frequency
|
2015-08-04 16:30:19 +08:00
|
|
|
- 'time': Disable/enable time stamping. Acceptable values are 1 for
|
|
|
|
enabling time stamping. 0 for disabling time stamping.
|
|
|
|
The default is 1.
|
perf callchain: Per-event type selection support
This patchkit adds the ability to set callgraph mode (fp, dwarf, lbr) per
event. This in term can reduce sampling overhead and the size of the
perf.data.
Here is an example.
perf record -e 'cpu/cpu-cycles,period=1000,call-graph=fp,time=1/,cpu/instructions,call-graph=lbr/' sleep 1
perf evlist -v
cpu/cpu-cycles,period=1000,call-graph=fp,time=1/: type: 4, size: 112,
config: 0x3c, { sample_period, sample_freq }: 1000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|IDENTIFIER, read_format: ID, disabled: 1,
inherit: 1, mmap: 1, comm: 1, enable_on_exec: 1, task: 1, sample_id_all:
1, exclude_guest: 1, mmap2: 1, comm_exec: 1
cpu/instructions,call-graph=lbr/: type: 4, size: 112, config: 0xc0, {
sample_period, sample_freq }: 4000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|BRANCH_STACK|IDENTIFIER, read_format: ID,
disabled: 1, inherit: 1, freq: 1, enable_on_exec: 1, sample_id_all: 1,
exclude_guest: 1
Signed-off-by: Kan Liang <kan.liang@intel.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1439289050-40510-1-git-send-email-kan.liang@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-08-11 18:30:47 +08:00
|
|
|
- 'call-graph': Disable/enable callgraph. Acceptable str are "fp" for
|
2015-08-11 18:30:48 +08:00
|
|
|
FP mode, "dwarf" for DWARF mode, "lbr" for LBR mode and
|
|
|
|
"no" for disable callgraph.
|
perf callchain: Per-event type selection support
This patchkit adds the ability to set callgraph mode (fp, dwarf, lbr) per
event. This in term can reduce sampling overhead and the size of the
perf.data.
Here is an example.
perf record -e 'cpu/cpu-cycles,period=1000,call-graph=fp,time=1/,cpu/instructions,call-graph=lbr/' sleep 1
perf evlist -v
cpu/cpu-cycles,period=1000,call-graph=fp,time=1/: type: 4, size: 112,
config: 0x3c, { sample_period, sample_freq }: 1000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|IDENTIFIER, read_format: ID, disabled: 1,
inherit: 1, mmap: 1, comm: 1, enable_on_exec: 1, task: 1, sample_id_all:
1, exclude_guest: 1, mmap2: 1, comm_exec: 1
cpu/instructions,call-graph=lbr/: type: 4, size: 112, config: 0xc0, {
sample_period, sample_freq }: 4000, sample_type:
IP|TID|TIME|CALLCHAIN|PERIOD|BRANCH_STACK|IDENTIFIER, read_format: ID,
disabled: 1, inherit: 1, freq: 1, enable_on_exec: 1, sample_id_all: 1,
exclude_guest: 1
Signed-off-by: Kan Liang <kan.liang@intel.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/1439289050-40510-1-git-send-email-kan.liang@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-08-11 18:30:47 +08:00
|
|
|
- 'stack-size': user stack size for dwarf mode
|
2015-07-08 16:44:54 +08:00
|
|
|
Note: If user explicitly sets options which conflict with the params,
|
|
|
|
the value set by the params will be overridden.
|
|
|
|
|
2016-09-07 00:37:15 +08:00
|
|
|
Also not defined in .../<pmu>/format/* are PMU driver specific
|
|
|
|
configuration parameters. Any configuration parameter preceded by
|
|
|
|
the letter '@' is not interpreted in user space and sent down directly
|
|
|
|
to the PMU driver. For example:
|
|
|
|
|
|
|
|
perf record -e some_event/@cfg1,@cfg2=config/ ...
|
|
|
|
|
|
|
|
will see 'cfg1' and 'cfg2=config' pushed to the PMU driver associated
|
|
|
|
with the event for further processing. There is no restriction on
|
|
|
|
what the configuration parameters are, as long as their semantic is
|
|
|
|
understood and supported by the PMU driver.
|
|
|
|
|
2014-05-29 23:26:51 +08:00
|
|
|
- a hardware breakpoint event in the form of '\mem:addr[/len][:access]'
|
2009-11-23 22:42:35 +08:00
|
|
|
where addr is the address in memory you want to break in.
|
|
|
|
Access is the memory access type (read, write, execute) it can
|
2014-05-29 23:26:51 +08:00
|
|
|
be passed as follows: '\mem:addr[:[r][w][x]]'. len is the range,
|
|
|
|
number of bytes from specified addr, which the breakpoint will cover.
|
2009-11-23 22:42:35 +08:00
|
|
|
If you want to profile read-write accesses in 0x1000, just set
|
|
|
|
'mem:0x1000:rw'.
|
2014-05-29 23:26:51 +08:00
|
|
|
If you want to profile write accesses in [0x1000~1008), just set
|
|
|
|
'mem:0x1000/8:w'.
|
2010-12-01 09:57:16 +08:00
|
|
|
|
2015-03-02 11:13:33 +08:00
|
|
|
- a group of events surrounded by a pair of brace ("{event1,event2,...}").
|
|
|
|
Each event is separated by commas and the group should be quoted to
|
|
|
|
prevent the shell interpretation. You also need to use --group on
|
|
|
|
"perf report" to view group events together.
|
|
|
|
|
2010-12-01 09:57:16 +08:00
|
|
|
--filter=<filter>::
|
2015-07-10 15:36:10 +08:00
|
|
|
Event filter. This option should follow a event selector (-e) which
|
2016-09-23 22:38:39 +08:00
|
|
|
selects either tracepoint event(s) or a hardware trace PMU
|
|
|
|
(e.g. Intel PT or CoreSight).
|
|
|
|
|
|
|
|
- tracepoint filters
|
|
|
|
|
|
|
|
In the case of tracepoints, multiple '--filter' options are combined
|
2015-07-10 15:36:10 +08:00
|
|
|
using '&&'.
|
2016-09-23 22:38:39 +08:00
|
|
|
|
|
|
|
- address filters
|
|
|
|
|
|
|
|
A hardware trace PMU advertises its ability to accept a number of
|
|
|
|
address filters by specifying a non-zero value in
|
|
|
|
/sys/bus/event_source/devices/<pmu>/nr_addr_filters.
|
|
|
|
|
|
|
|
Address filters have the format:
|
|
|
|
|
|
|
|
filter|start|stop|tracestop <start> [/ <size>] [@<file name>]
|
|
|
|
|
|
|
|
Where:
|
|
|
|
- 'filter': defines a region that will be traced.
|
|
|
|
- 'start': defines an address at which tracing will begin.
|
|
|
|
- 'stop': defines an address at which tracing will stop.
|
|
|
|
- 'tracestop': defines a region in which tracing will stop.
|
|
|
|
|
|
|
|
<file name> is the name of the object file, <start> is the offset to the
|
|
|
|
code to trace in that file, and <size> is the size of the region to
|
|
|
|
trace. 'start' and 'stop' filters need not specify a <size>.
|
|
|
|
|
|
|
|
If no object file is specified then the kernel is assumed, in which case
|
|
|
|
the start address must be a current kernel memory address.
|
|
|
|
|
|
|
|
<start> can also be specified by providing the name of a symbol. If the
|
|
|
|
symbol name is not unique, it can be disambiguated by inserting #n where
|
|
|
|
'n' selects the n'th symbol in address order. Alternately #0, #g or #G
|
|
|
|
select only a global symbol. <size> can also be specified by providing
|
|
|
|
the name of a symbol, in which case the size is calculated to the end
|
|
|
|
of that symbol. For 'filter' and 'tracestop' filters, if <size> is
|
|
|
|
omitted and <start> is a symbol, then the size is calculated to the end
|
|
|
|
of that symbol.
|
|
|
|
|
|
|
|
If <size> is omitted and <start> is '*', then the start and size will
|
|
|
|
be calculated from the first and last symbols, i.e. to trace the whole
|
|
|
|
file.
|
|
|
|
|
|
|
|
If symbol names (or '*') are provided, they must be surrounded by white
|
|
|
|
space.
|
|
|
|
|
|
|
|
The filter passed to the kernel is not necessarily the same as entered.
|
|
|
|
To see the filter that is passed, use the -v option.
|
|
|
|
|
|
|
|
The kernel may not be able to configure a trace region if it is not
|
|
|
|
within a single mapping. MMAP events (or /proc/<pid>/maps) can be
|
|
|
|
examined to determine if that is a possibility.
|
|
|
|
|
|
|
|
Multiple filters can be separated with space or comma.
|
2015-07-10 15:36:10 +08:00
|
|
|
|
|
|
|
--exclude-perf::
|
|
|
|
Don't record events issued by perf itself. This option should follow
|
|
|
|
a event selector (-e) which selects tracepoint event(s). It adds a
|
|
|
|
filter expression 'common_pid != $PERFPID' to filters. If other
|
|
|
|
'--filter' exists, the new filter expression will be combined with
|
|
|
|
them by '&&'.
|
2010-12-01 09:57:16 +08:00
|
|
|
|
2009-04-20 21:58:01 +08:00
|
|
|
-a::
|
2010-12-01 09:57:16 +08:00
|
|
|
--all-cpus::
|
|
|
|
System-wide collection from all CPUs.
|
2009-04-20 21:58:01 +08:00
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-p::
|
|
|
|
--pid=::
|
2012-02-09 00:32:52 +08:00
|
|
|
Record events on existing process ID (comma separated list).
|
2010-12-01 09:57:16 +08:00
|
|
|
|
|
|
|
-t::
|
|
|
|
--tid=::
|
2012-02-09 00:32:52 +08:00
|
|
|
Record events on existing thread ID (comma separated list).
|
2013-11-18 17:55:57 +08:00
|
|
|
This option also disables inheritance by default. Enable it by adding
|
|
|
|
--inherit.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
2012-01-20 00:08:15 +08:00
|
|
|
-u::
|
|
|
|
--uid=::
|
|
|
|
Record events in threads owned by uid. Name or number.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-r::
|
|
|
|
--realtime=::
|
|
|
|
Collect data with this RT SCHED_FIFO priority.
|
2013-06-05 19:35:06 +08:00
|
|
|
|
2014-01-15 04:52:14 +08:00
|
|
|
--no-buffering::
|
perf record: Add "nodelay" mode, disabled by default
Sometimes there is a need to use perf in "live-log" mode. The problem
is, for seldom events, actual info output is largely delayed because
perf-record reads sample data in whole pages.
So for such scenarious, add flag for perf-record to go in "nodelay"
mode. To track e.g. what's going on in icmp_rcv while ping is running
Use it with something like this:
(1) $ perf probe -L icmp_rcv | grep -U8 '^ *43\>'
goto error;
}
38 if (!pskb_pull(skb, sizeof(*icmph)))
goto error;
icmph = icmp_hdr(skb);
43 ICMPMSGIN_INC_STATS_BH(net, icmph->type);
/*
* 18 is the highest 'known' ICMP type. Anything else is a mystery
*
* RFC 1122: 3.2.2 Unknown ICMP messages types MUST be silently
* discarded.
*/
50 if (icmph->type > NR_ICMP_TYPES)
goto error;
$ perf probe icmp_rcv:43 'type=icmph->type'
(2) $ cat trace-icmp.py
[...]
def trace_begin():
print "in trace_begin"
def trace_end():
print "in trace_end"
def probe__icmp_rcv(event_name, context, common_cpu,
common_secs, common_nsecs, common_pid, common_comm,
__probe_ip, type):
print_header(event_name, common_cpu, common_secs, common_nsecs,
common_pid, common_comm)
print "__probe_ip=%u, type=%u\n" % \
(__probe_ip, type),
[...]
(3) $ perf record -a -D -e probe:icmp_rcv -o - | \
perf script -i - -s trace-icmp.py
Thanks to Peter Zijlstra for pointing how to do it.
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>, Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <20110112140613.GA11698@tugrik.mns.mnsspb.ru>
Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2011-01-12 22:59:36 +08:00
|
|
|
Collect data without buffering.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
|
|
|
-c::
|
|
|
|
--count=::
|
|
|
|
Event period to sample.
|
|
|
|
|
|
|
|
-o::
|
|
|
|
--output=::
|
|
|
|
Output file name.
|
|
|
|
|
|
|
|
-i::
|
2010-05-12 16:40:01 +08:00
|
|
|
--no-inherit::
|
|
|
|
Child tasks do not inherit counters.
|
2009-08-05 21:04:53 +08:00
|
|
|
-F::
|
|
|
|
--freq=::
|
|
|
|
Profile at this frequency.
|
|
|
|
|
|
|
|
-m::
|
|
|
|
--mmap-pages=::
|
2013-09-01 18:36:13 +08:00
|
|
|
Number of mmap data pages (must be a power of two) or size
|
|
|
|
specification with appended unit character - B/K/M/G. The
|
|
|
|
size is rounded up to have nearest pages power of two value.
|
2015-04-09 23:53:46 +08:00
|
|
|
Also, by adding a comma, the number of mmap pages for AUX
|
|
|
|
area tracing can be specified.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
2015-03-02 11:13:33 +08:00
|
|
|
--group::
|
|
|
|
Put all events in a single event group. This precedes the --event
|
|
|
|
option and remains only for backward compatibility. See --event.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-g::
|
2013-10-26 22:25:33 +08:00
|
|
|
Enables call-graph (stack chain/backtrace) recording.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
--call-graph::
|
2013-10-26 22:25:33 +08:00
|
|
|
Setup and enable call-graph (stack chain/backtrace) recording,
|
perf tools: Improve call graph documents and help messages
The --call-graph option is complex so we should provide better guide for
users. Also change help message to be consistent with config option
names. Now perf top will show help like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph <record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]>
setup and enables call-graph (stack chain/backtrace):
record_mode: call graph recording mode (fp|dwarf|lbr)
record_size: if record_mode is 'dwarf', max size of stack recording (<bytes>)
default: 8192 (bytes)
print_type: call graph printing style (graph|flat|fractal|none)
threshold: minimum call graph inclusion threshold (<percent>)
print_limit: maximum number of call graph entry (<number>)
order: call graph order (caller|callee)
sort_key: call graph sort key (function|address)
branch: include last branch info to call graph (branch)
Default: fp,graph,0.5,caller,function
Requested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445524112-5201-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 22:28:32 +08:00
|
|
|
implies -g. Default is "fp".
|
2013-10-26 22:25:33 +08:00
|
|
|
|
|
|
|
Allows specifying "fp" (frame pointer) or "dwarf"
|
2015-01-06 02:23:04 +08:00
|
|
|
(DWARF's CFI - Call Frame Information) or "lbr"
|
|
|
|
(Hardware Last Branch Record facility) as the method to collect
|
2013-10-26 22:25:33 +08:00
|
|
|
the information used to show the call graphs.
|
|
|
|
|
|
|
|
In some systems, where binaries are build with gcc
|
|
|
|
--fomit-frame-pointer, using the "fp" method will produce bogus
|
|
|
|
call graphs, using "dwarf", if available (perf tools linked to
|
perf tools: Improve call graph documents and help messages
The --call-graph option is complex so we should provide better guide for
users. Also change help message to be consistent with config option
names. Now perf top will show help like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph <record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]>
setup and enables call-graph (stack chain/backtrace):
record_mode: call graph recording mode (fp|dwarf|lbr)
record_size: if record_mode is 'dwarf', max size of stack recording (<bytes>)
default: 8192 (bytes)
print_type: call graph printing style (graph|flat|fractal|none)
threshold: minimum call graph inclusion threshold (<percent>)
print_limit: maximum number of call graph entry (<number>)
order: call graph order (caller|callee)
sort_key: call graph sort key (function|address)
branch: include last branch info to call graph (branch)
Default: fp,graph,0.5,caller,function
Requested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445524112-5201-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 22:28:32 +08:00
|
|
|
the libunwind or libdw library) should be used instead.
|
2015-01-06 02:23:04 +08:00
|
|
|
Using the "lbr" method doesn't require any compiler options. It
|
|
|
|
will produce call graphs from the hardware LBR registers. The
|
|
|
|
main limition is that it is only available on new Intel
|
|
|
|
platforms, such as Haswell. It can only get user call chain. It
|
|
|
|
doesn't work with branch stack sampling at the same time.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
perf tools: Improve call graph documents and help messages
The --call-graph option is complex so we should provide better guide for
users. Also change help message to be consistent with config option
names. Now perf top will show help like below:
$ perf top --call-graph
Error: option `call-graph' requires a value
Usage: perf top [<options>]
--call-graph <record_mode[,record_size],print_type,threshold[,print_limit],order,sort_key[,branch]>
setup and enables call-graph (stack chain/backtrace):
record_mode: call graph recording mode (fp|dwarf|lbr)
record_size: if record_mode is 'dwarf', max size of stack recording (<bytes>)
default: 8192 (bytes)
print_type: call graph printing style (graph|flat|fractal|none)
threshold: minimum call graph inclusion threshold (<percent>)
print_limit: maximum number of call graph entry (<number>)
order: call graph order (caller|callee)
sort_key: call graph sort key (function|address)
branch: include last branch info to call graph (branch)
Default: fp,graph,0.5,caller,function
Requested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Acked-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Chandler Carruth <chandlerc@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1445524112-5201-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-10-22 22:28:32 +08:00
|
|
|
When "dwarf" recording is used, perf also records (user) stack dump
|
|
|
|
when sampled. Default size of the stack dump is 8192 (bytes).
|
|
|
|
User can change the size by passing the size after comma like
|
|
|
|
"--call-graph dwarf,4096".
|
|
|
|
|
2010-10-27 01:20:09 +08:00
|
|
|
-q::
|
|
|
|
--quiet::
|
|
|
|
Don't print any message, useful for scripting.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-v::
|
|
|
|
--verbose::
|
|
|
|
Be more verbose (show counter open errors, etc).
|
|
|
|
|
|
|
|
-s::
|
|
|
|
--stat::
|
2015-05-09 23:19:42 +08:00
|
|
|
Record per-thread event counts. Use it with 'perf report -T' to see
|
|
|
|
the values.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
|
|
|
-d::
|
|
|
|
--data::
|
2015-06-10 22:48:50 +08:00
|
|
|
Record the sample addresses.
|
2009-08-05 21:04:53 +08:00
|
|
|
|
2010-12-02 20:25:28 +08:00
|
|
|
-T::
|
|
|
|
--timestamp::
|
2015-06-10 22:48:50 +08:00
|
|
|
Record the sample timestamps. Use it with 'perf report -D' to see the
|
|
|
|
timestamps, for instance.
|
|
|
|
|
|
|
|
-P::
|
|
|
|
--period::
|
|
|
|
Record the sample period.
|
2010-12-02 20:25:28 +08:00
|
|
|
|
2016-08-02 02:02:35 +08:00
|
|
|
--sample-cpu::
|
|
|
|
Record the sample cpu.
|
|
|
|
|
2009-08-05 21:04:53 +08:00
|
|
|
-n::
|
|
|
|
--no-samples::
|
|
|
|
Don't sample.
|
2009-04-20 21:58:01 +08:00
|
|
|
|
2009-08-31 09:32:03 +08:00
|
|
|
-R::
|
|
|
|
--raw-samples::
|
2010-04-15 02:05:17 +08:00
|
|
|
Collect raw sample records from all opened counters (default for tracepoint counters).
|
2009-08-31 09:32:03 +08:00
|
|
|
|
2010-05-28 18:00:01 +08:00
|
|
|
-C::
|
|
|
|
--cpu::
|
2010-12-01 09:57:16 +08:00
|
|
|
Collect samples only on the list of CPUs provided. Multiple CPUs can be provided as a
|
|
|
|
comma-separated list with no space: 0,1. Ranges of CPUs are specified with -: 0-2.
|
2010-05-28 18:00:01 +08:00
|
|
|
In per-thread mode with inheritance mode on (default), samples are captured only when
|
|
|
|
the thread executes on the designated CPUs. Default is to monitor all CPUs.
|
|
|
|
|
2015-12-15 09:49:56 +08:00
|
|
|
-B::
|
|
|
|
--no-buildid::
|
|
|
|
Do not save the build ids of binaries in the perf.data files. This skips
|
|
|
|
post processing after recording, which sometimes makes the final step in
|
|
|
|
the recording process to take a long time, as it needs to process all
|
|
|
|
events looking for mmap records. The downside is that it can misresolve
|
|
|
|
symbols if the workload binaries used when recording get locally rebuilt
|
|
|
|
or upgraded, because the only key available in this case is the
|
|
|
|
pathname. You can also set the "record.build-id" config variable to
|
|
|
|
'skip to have this behaviour permanently.
|
|
|
|
|
2010-06-17 17:39:01 +08:00
|
|
|
-N::
|
|
|
|
--no-buildid-cache::
|
2014-09-09 23:18:50 +08:00
|
|
|
Do not update the buildid cache. This saves some overhead in situations
|
2010-06-17 17:39:01 +08:00
|
|
|
where the information in the perf.data file (which includes buildids)
|
2015-12-15 09:49:56 +08:00
|
|
|
is sufficient. You can also set the "record.build-id" config variable to
|
|
|
|
'no-cache' to have the same effect.
|
2010-06-17 17:39:01 +08:00
|
|
|
|
perf tool: Add cgroup support
This patch adds the ability to filter monitoring based on container groups
(cgroups) for both perf stat and perf record. It is possible to monitor
multiple cgroup in parallel. There is one cgroup per event. The cgroups to
monitor are passed via a new -G option followed by a comma separated list of
cgroup names.
The cgroup filesystem has to be mounted. Given a cgroup name, the perf tool
finds the corresponding directory in the cgroup filesystem and opens it. It
then passes that file descriptor to the kernel.
Example:
$ perf stat -B -a -e cycles:u,cycles:u,cycles:u -G test1,,test2 -- sleep 1
Performance counter stats for 'sleep 1':
2,368,667,414 cycles test1
2,369,661,459 cycles
<not counted> cycles test2
1.001856890 seconds time elapsed
Signed-off-by: Stephane Eranian <eranian@google.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
LKML-Reference: <4d590290.825bdf0a.7d0a.4890@mx.google.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2011-02-14 17:20:01 +08:00
|
|
|
-G name,...::
|
|
|
|
--cgroup name,...::
|
|
|
|
monitor only in the container (cgroup) called "name". This option is available only
|
|
|
|
in per-cpu mode. The cgroup filesystem must be mounted. All threads belonging to
|
|
|
|
container "name" are monitored when they run on the monitored CPUs. Multiple cgroups
|
|
|
|
can be provided. Each cgroup is applied to the corresponding event, i.e., first cgroup
|
|
|
|
to first event, second cgroup to second event and so on. It is possible to provide
|
|
|
|
an empty cgroup (monitor all the time) using, e.g., -G foo,,bar. Cgroups must have
|
|
|
|
corresponding events, i.e., they always refer to events defined earlier on the command
|
|
|
|
line.
|
|
|
|
|
2012-02-10 06:21:02 +08:00
|
|
|
-b::
|
2012-03-09 06:47:45 +08:00
|
|
|
--branch-any::
|
|
|
|
Enable taken branch stack sampling. Any type of taken branch may be sampled.
|
|
|
|
This is a shortcut for --branch-filter any. See --branch-filter for more infos.
|
|
|
|
|
|
|
|
-j::
|
|
|
|
--branch-filter::
|
2012-02-10 06:21:02 +08:00
|
|
|
Enable taken branch stack sampling. Each sample captures a series of consecutive
|
|
|
|
taken branches. The number of branches captured with each sample depends on the
|
|
|
|
underlying hardware, the type of branches of interest, and the executed code.
|
|
|
|
It is possible to select the types of branches captured by enabling filters. The
|
|
|
|
following filters are defined:
|
|
|
|
|
2012-03-09 06:47:45 +08:00
|
|
|
- any: any type of branches
|
2012-02-10 06:21:02 +08:00
|
|
|
- any_call: any function call or system call
|
|
|
|
- any_ret: any function return or system call return
|
2012-05-18 16:46:50 +08:00
|
|
|
- ind_call: any indirect branch
|
2015-10-13 15:09:11 +08:00
|
|
|
- call: direct calls, including far (to/from kernel) calls
|
2012-02-10 06:21:02 +08:00
|
|
|
- u: only when the branch target is at the user level
|
|
|
|
- k: only when the branch target is in the kernel
|
|
|
|
- hv: only when the target is at the hypervisor level
|
2013-09-20 22:40:42 +08:00
|
|
|
- in_tx: only when the target is in a hardware transaction
|
|
|
|
- no_tx: only when the target is not in a hardware transaction
|
|
|
|
- abort_tx: only when the target is a hardware transaction abort
|
2014-05-22 15:20:10 +08:00
|
|
|
- cond: conditional branches
|
2012-02-10 06:21:02 +08:00
|
|
|
|
|
|
|
+
|
2014-05-22 15:20:10 +08:00
|
|
|
The option requires at least one branch type among any, any_call, any_ret, ind_call, cond.
|
2012-11-30 13:10:25 +08:00
|
|
|
The privilege levels may be omitted, in which case, the privilege levels of the associated
|
2012-03-09 06:47:45 +08:00
|
|
|
event are applied to the branch filter. Both kernel (k) and hypervisor (hv) privilege
|
|
|
|
levels are subject to permissions. When sampling on multiple events, branch stack sampling
|
|
|
|
is enabled for all the sampling events. The sampled branch type is the same for all events.
|
|
|
|
The various filters must be specified as a comma separated list: --branch-filter any_ret,u,k
|
|
|
|
Note that this feature may not be available on all processors.
|
2012-02-10 06:21:02 +08:00
|
|
|
|
2013-01-24 23:10:29 +08:00
|
|
|
--weight::
|
|
|
|
Enable weightened sampling. An additional weight is recorded per sample and can be
|
|
|
|
displayed with the weight and local_weight sort keys. This currently works for TSX
|
|
|
|
abort events and some memory events in precise mode on modern Intel CPUs.
|
|
|
|
|
2013-09-20 22:40:43 +08:00
|
|
|
--transaction::
|
|
|
|
Record transaction flags for transaction related events.
|
|
|
|
|
2013-11-15 21:52:29 +08:00
|
|
|
--per-thread::
|
|
|
|
Use per-thread mmaps. By default per-cpu mmaps are created. This option
|
|
|
|
overrides that and uses per-thread mmaps. A side-effect of that is that
|
|
|
|
inheritance is automatically disabled. --per-thread is ignored with a warning
|
|
|
|
if combined with -a or -C options.
|
2013-11-01 21:51:34 +08:00
|
|
|
|
2014-01-15 04:58:12 +08:00
|
|
|
-D::
|
|
|
|
--delay=::
|
2014-01-12 05:38:27 +08:00
|
|
|
After starting the program, wait msecs before measuring. This is useful to
|
|
|
|
filter out the startup phase of the program, which is often very different.
|
|
|
|
|
2014-09-24 19:48:41 +08:00
|
|
|
-I::
|
|
|
|
--intr-regs::
|
|
|
|
Capture machine state (registers) at interrupt, i.e., on counter overflows for
|
|
|
|
each sample. List of captured registers depends on the architecture. This option
|
perf record: Add ability to name registers to record
This patch modifies the -I/--int-regs option to enablepassing the name
of the registers to sample on interrupt. Registers can be specified by
their symbolic names. For instance on x86, --intr-regs=ax,si.
The motivation is to reduce the size of the perf.data file and the
overhead of sampling by only collecting the registers useful to a
specific analysis. For instance, for value profiling, sampling only the
registers used to passed arguements to functions.
With no parameter, the --intr-regs still records all possible registers
based on the architecture.
To name registers, it is necessary to use the long form of the option,
i.e., --intr-regs:
$ perf record --intr-regs=si,di,r8,r9 .....
To record any possible registers:
$ perf record -I .....
$ perf report --intr-regs ...
To display the register, one can use perf report -D
To list the available registers:
$ perf record --intr-regs=\?
available registers: AX BX CX DX SI DI BP SP IP FLAGS CS SS R8 R9 R10 R11 R12 R13 R14 R15
Signed-off-by: Stephane Eranian <eranian@google.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1441039273-16260-4-git-send-email-eranian@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-09-01 00:41:12 +08:00
|
|
|
is off by default. It is possible to select the registers to sample using their
|
|
|
|
symbolic names, e.g. on x86, ax, si. To list the available registers use
|
|
|
|
--intr-regs=\?. To name registers, pass a comma separated list such as
|
|
|
|
--intr-regs=ax,bx. The list of register is architecture dependent.
|
|
|
|
|
2014-09-24 19:48:41 +08:00
|
|
|
|
2015-02-25 07:13:40 +08:00
|
|
|
--running-time::
|
|
|
|
Record running and enabled time for read events (:S)
|
|
|
|
|
2015-03-31 06:19:31 +08:00
|
|
|
-k::
|
|
|
|
--clockid::
|
|
|
|
Sets the clock id to use for the various time fields in the perf_event_type
|
|
|
|
records. See clock_gettime(). In particular CLOCK_MONOTONIC and
|
|
|
|
CLOCK_MONOTONIC_RAW are supported, some events might also allow
|
|
|
|
CLOCK_BOOTTIME, CLOCK_REALTIME and CLOCK_TAI.
|
|
|
|
|
2015-04-30 22:37:32 +08:00
|
|
|
-S::
|
|
|
|
--snapshot::
|
|
|
|
Select AUX area tracing Snapshot Mode. This option is valid only with an
|
|
|
|
AUX area tracing event. Optionally the number of bytes to capture per
|
|
|
|
snapshot can be specified. In Snapshot Mode, trace data is captured only when
|
|
|
|
signal SIGUSR2 is received.
|
|
|
|
|
2015-06-17 21:51:11 +08:00
|
|
|
--proc-map-timeout::
|
|
|
|
When processing pre-existing threads /proc/XXX/mmap, it may take a long time,
|
|
|
|
because the file may be huge. A time out is needed in such cases.
|
|
|
|
This option sets the time out limit. The default value is 500 ms.
|
|
|
|
|
2015-07-21 17:44:04 +08:00
|
|
|
--switch-events::
|
|
|
|
Record context switch events i.e. events of type PERF_RECORD_SWITCH or
|
|
|
|
PERF_RECORD_SWITCH_CPU_WIDE.
|
|
|
|
|
2015-12-14 18:39:23 +08:00
|
|
|
--clang-path=PATH::
|
2015-10-14 20:41:19 +08:00
|
|
|
Path to clang binary to use for compiling BPF scriptlets.
|
2015-12-14 18:39:23 +08:00
|
|
|
(enabled when BPF support is on)
|
2015-10-14 20:41:19 +08:00
|
|
|
|
2015-12-14 18:39:23 +08:00
|
|
|
--clang-opt=OPTIONS::
|
2015-10-14 20:41:19 +08:00
|
|
|
Options passed to clang when compiling BPF scriptlets.
|
2015-12-14 18:39:23 +08:00
|
|
|
(enabled when BPF support is on)
|
|
|
|
|
|
|
|
--vmlinux=PATH::
|
|
|
|
Specify vmlinux path which has debuginfo.
|
|
|
|
(enabled when BPF prologue is on)
|
2015-10-14 20:41:19 +08:00
|
|
|
|
2016-01-11 21:37:09 +08:00
|
|
|
--buildid-all::
|
|
|
|
Record build-id of all DSOs regardless whether it's actually hit or not.
|
|
|
|
|
2016-02-15 16:34:31 +08:00
|
|
|
--all-kernel::
|
|
|
|
Configure all used events to run in kernel space.
|
|
|
|
|
|
|
|
--all-user::
|
|
|
|
Configure all used events to run in user space.
|
|
|
|
|
2016-04-21 02:59:51 +08:00
|
|
|
--timestamp-filename
|
|
|
|
Append timestamp to output file name.
|
|
|
|
|
2016-04-21 02:59:50 +08:00
|
|
|
--switch-output::
|
|
|
|
Generate multiple perf.data files, timestamp prefixed, switching to a new one
|
|
|
|
when receiving a SIGUSR2.
|
|
|
|
|
|
|
|
A possible use case is to, given an external event, slice the perf.data file
|
|
|
|
that gets then processed, possibly via a perf script, to decide if that
|
|
|
|
particular perf.data snapshot should be kept or not.
|
|
|
|
|
2016-04-21 02:59:52 +08:00
|
|
|
Implies --timestamp-filename, --no-buildid and --no-buildid-cache.
|
2016-04-21 02:59:51 +08:00
|
|
|
|
2016-06-16 16:02:41 +08:00
|
|
|
--dry-run::
|
|
|
|
Parse options then exit. --dry-run can be used to detect errors in cmdline
|
|
|
|
options.
|
|
|
|
|
|
|
|
'perf record --dry-run -e' can act as a BPF script compiler if llvm.dump-obj
|
|
|
|
in config file is set to true.
|
|
|
|
|
perf record: Add --tail-synthesize option
When working with overwritable ring buffer there's a inconvenience
problem: if perf dumps data after a long period after it starts,
non-sample events may lost, which makes following 'perf report' unable
to identify proc name and mmap layout. For example:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output \
dd if=/dev/zero of=/dev/null
send SIGUSR2 after dd runs long enough. The resuling perf.data lost
correct comm and mmap events:
# perf script -i perf.data.2016061522374354
perf 24478 [004] 2581325.601789: raw_syscalls:sys_exit: NR 0 = 512
^^^^
Should be 'dd'
27b2e8 syscall_slow_exit_work+0xfe2000e3 (/lib/modules/4.6.0-rc3+/build/vmlinux)
203cc7 do_syscall_64+0xfe200117 (/lib/modules/4.6.0-rc3+/build/vmlinux)
b18d83 return_from_SYSCALL_64+0xfe200000 (/lib/modules/4.6.0-rc3+/build/vmlinux)
7f47c417edf0 [unknown] ([unknown])
^^^^^^^^^^^^
Fail to unwind
This patch provides a '--tail-synthesize' option, allows perf to collect
system status when finalizing output file. In resuling output file, the
non-sample events reflect system status when dumping data.
After this patch:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output --tail-synthesize \
dd if=/dev/zero of=/dev/null
# perf script -i perf.data.2016061600544998
dd 27364 [004] 2583244.994464: raw_syscalls:sys_enter: NR 1 (1, ...
^^
Correct comm
203a18 syscall_trace_enter_phase2+0xfe2001a8 ([kernel.kallsyms])
203aa5 syscall_trace_enter+0xfe200055 ([kernel.kallsyms])
203caa do_syscall_64+0xfe2000fa ([kernel.kallsyms])
b18d83 return_from_SYSCALL_64+0xfe200000 ([kernel.kallsyms])
d8e50 __GI___libc_write+0xffff01d9639f4010 (/tmp/oxygen_root-w00229757/lib64/libc-2.18.so)
^^^^^
Correct unwind
This option doesn't aim to solve this problem completely. If a process
terminates before SIGUSR2, we still lost its COMM and MMAP events. For
example, we can't unwind correctly from the final perf.data we get from
the previous example, because when perf collects the final output file
(when we press C-c), 'dd' has been terminated so its '/proc/<pid>/mmap'
becomes empty.
However, this is a cheaper choice. To completely solve this problem we
need to continously output non-sample events. To satisify the
requirement of daemonization, we need to merge them periodically. It is
possible but requires much more code and cycles.
Automatically select --tail-synthesize when --overwrite is provided.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nilay Vaish <nilayvaish@gmail.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1468485287-33422-16-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-07-14 16:34:47 +08:00
|
|
|
--tail-synthesize::
|
|
|
|
Instead of collecting non-sample events (for example, fork, comm, mmap) at
|
|
|
|
the beginning of record, collect them during finalizing an output file.
|
|
|
|
The collected non-sample events reflects the status of the system when
|
|
|
|
record is finished.
|
|
|
|
|
perf tools: Enable overwrite settings
This patch allows following config terms and option:
Globally setting events to overwrite;
# perf record --overwrite ...
Set specific events to be overwrite or no-overwrite.
# perf record --event cycles/overwrite/ ...
# perf record --event cycles/no-overwrite/ ...
Add missing config terms and update the config term array size because
the longest string length has changed.
For overwritable events, it automatically selects attr.write_backward
since perf requires it to be backward for reading.
Test result:
# perf record --overwrite -e syscalls:*enter_nanosleep* usleep 1
[ perf record: Woken up 2 times to write data ]
[ perf record: Captured and wrote 0.011 MB perf.data (1 samples) ]
# perf evlist -v
syscalls:sys_enter_nanosleep: type: 2, size: 112, config: 0x134, { sample_period, sample_freq }: 1, sample_type: IP|TID|TIME|CPU|PERIOD|RAW, disabled: 1, inherit: 1, mmap: 1, comm: 1, enable_on_exec: 1, task: 1, sample_id_all: 1, exclude_guest: 1, mmap2: 1, comm_exec: 1, write_backward: 1
# Tip: use 'perf evlist --trace-fields' to show fields for tracepoint events
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nilay Vaish <nilayvaish@gmail.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1468485287-33422-14-git-send-email-wangnan0@huawei.com
Signed-off-by: He Kuang <hekuang@huawei.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-07-14 16:34:45 +08:00
|
|
|
--overwrite::
|
|
|
|
Makes all events use an overwritable ring buffer. An overwritable ring
|
|
|
|
buffer works like a flight recorder: when it gets full, the kernel will
|
|
|
|
overwrite the oldest records, that thus will never make it to the
|
|
|
|
perf.data file.
|
|
|
|
|
|
|
|
When '--overwrite' and '--switch-output' are used perf records and drops
|
|
|
|
events until it receives a signal, meaning that something unusual was
|
|
|
|
detected that warrants taking a snapshot of the most current events,
|
|
|
|
those fitting in the ring buffer at that moment.
|
|
|
|
|
|
|
|
'overwrite' attribute can also be set or canceled for an event using
|
|
|
|
config terms. For example: 'cycles/overwrite/' and 'instructions/no-overwrite/'.
|
|
|
|
|
perf record: Add --tail-synthesize option
When working with overwritable ring buffer there's a inconvenience
problem: if perf dumps data after a long period after it starts,
non-sample events may lost, which makes following 'perf report' unable
to identify proc name and mmap layout. For example:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output \
dd if=/dev/zero of=/dev/null
send SIGUSR2 after dd runs long enough. The resuling perf.data lost
correct comm and mmap events:
# perf script -i perf.data.2016061522374354
perf 24478 [004] 2581325.601789: raw_syscalls:sys_exit: NR 0 = 512
^^^^
Should be 'dd'
27b2e8 syscall_slow_exit_work+0xfe2000e3 (/lib/modules/4.6.0-rc3+/build/vmlinux)
203cc7 do_syscall_64+0xfe200117 (/lib/modules/4.6.0-rc3+/build/vmlinux)
b18d83 return_from_SYSCALL_64+0xfe200000 (/lib/modules/4.6.0-rc3+/build/vmlinux)
7f47c417edf0 [unknown] ([unknown])
^^^^^^^^^^^^
Fail to unwind
This patch provides a '--tail-synthesize' option, allows perf to collect
system status when finalizing output file. In resuling output file, the
non-sample events reflect system status when dumping data.
After this patch:
# perf record -m 4 -e raw_syscalls:* -g --overwrite --switch-output --tail-synthesize \
dd if=/dev/zero of=/dev/null
# perf script -i perf.data.2016061600544998
dd 27364 [004] 2583244.994464: raw_syscalls:sys_enter: NR 1 (1, ...
^^
Correct comm
203a18 syscall_trace_enter_phase2+0xfe2001a8 ([kernel.kallsyms])
203aa5 syscall_trace_enter+0xfe200055 ([kernel.kallsyms])
203caa do_syscall_64+0xfe2000fa ([kernel.kallsyms])
b18d83 return_from_SYSCALL_64+0xfe200000 ([kernel.kallsyms])
d8e50 __GI___libc_write+0xffff01d9639f4010 (/tmp/oxygen_root-w00229757/lib64/libc-2.18.so)
^^^^^
Correct unwind
This option doesn't aim to solve this problem completely. If a process
terminates before SIGUSR2, we still lost its COMM and MMAP events. For
example, we can't unwind correctly from the final perf.data we get from
the previous example, because when perf collects the final output file
(when we press C-c), 'dd' has been terminated so its '/proc/<pid>/mmap'
becomes empty.
However, this is a cheaper choice. To completely solve this problem we
need to continously output non-sample events. To satisify the
requirement of daemonization, we need to merge them periodically. It is
possible but requires much more code and cycles.
Automatically select --tail-synthesize when --overwrite is provided.
Signed-off-by: Wang Nan <wangnan0@huawei.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nilay Vaish <nilayvaish@gmail.com>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com
Link: http://lkml.kernel.org/r/1468485287-33422-16-git-send-email-wangnan0@huawei.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2016-07-14 16:34:47 +08:00
|
|
|
Implies --tail-synthesize.
|
|
|
|
|
2009-04-20 21:58:01 +08:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2009-06-06 20:56:33 +08:00
|
|
|
linkperf:perf-stat[1], linkperf:perf-list[1]
|