ea66536ab2
I've tested to process the perf man pages with asciidoctor that is picker than asciidoc, and it revealed minor syntax errors in some documents. Namely, the title markers aren't aligned with the previous line, hence asciidoctor didn't recognize as titles. This patch corrects these markers to be processed properly. Signed-off-by: Takashi Iwai <tiwai@suse.de> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/20180307105441.28512-1-tiwai@suse.de Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
48 lines
972 B
Text
48 lines
972 B
Text
perf-data(1)
|
|
============
|
|
|
|
NAME
|
|
----
|
|
perf-data - Data file related processing
|
|
|
|
SYNOPSIS
|
|
--------
|
|
[verse]
|
|
'perf data' [<common options>] <command> [<options>]",
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
Data file related processing.
|
|
|
|
COMMANDS
|
|
--------
|
|
convert::
|
|
Converts perf data file into another format (only CTF [1] format is support by now).
|
|
It's possible to set data-convert debug variable to get debug messages from conversion,
|
|
like:
|
|
perf --debug data-convert data convert ...
|
|
|
|
OPTIONS for 'convert'
|
|
---------------------
|
|
--to-ctf::
|
|
Triggers the CTF conversion, specify the path of CTF data directory.
|
|
|
|
-i::
|
|
Specify input perf data file path.
|
|
|
|
-f::
|
|
--force::
|
|
Don't complain, do it.
|
|
|
|
-v::
|
|
--verbose::
|
|
Be more verbose (show counter open errors, etc).
|
|
|
|
--all::
|
|
Convert all events, including non-sample events (comm, fork, ...), to output.
|
|
Default is off, only convert samples.
|
|
|
|
SEE ALSO
|
|
--------
|
|
linkperf:perf[1]
|
|
[1] Common Trace Format - http://www.efficios.com/ctf
|