blob: 058064db39d2d7e5cab506c5cc13911076a69a99 [file] [log] [blame]
Arnaldo Carvalho de Meloef12a142010-01-20 15:28:45 -02001perf-buildid-cache(1)
2=====================
3
4NAME
5----
6perf-buildid-cache - Manage build-id cache.
7
8SYNOPSIS
9--------
10[verse]
Arnaldo Carvalho de Melo11d232e2010-05-04 10:48:22 -030011'perf buildid-cache <options>'
Arnaldo Carvalho de Meloef12a142010-01-20 15:28:45 -020012
13DESCRIPTION
14-----------
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +090015This command manages the build-id cache. It can add, remove, update and purge
16files to/from the cache. In the future it should as well set upper limits for
17the space used by the cache, etc.
Masami Hiramatsu6430a942016-07-01 17:04:10 +090018This also scans the target binary for SDT (Statically Defined Tracing) and
19record it along with the buildid-cache, which will be used by perf-probe.
20For more details, see linkperf:perf-probe[1].
Arnaldo Carvalho de Meloef12a142010-01-20 15:28:45 -020021
22OPTIONS
23-------
24-a::
25--add=::
26 Add specified file to the cache.
Adrian Hunterfc1b6912013-10-14 16:57:29 +030027-k::
28--kcore::
29 Add specified kcore file to the cache. For the current host that is
30 /proc/kcore which requires root permissions to read. Be aware that
31 running 'perf buildid-cache' as root may update root's build-id cache
32 not the user's. Use the -v option to see where the file is created.
33 Note that the copied file contains only code sections not the whole core
34 image. Note also that files "kallsyms" and "modules" must also be in the
35 same directory and are also copied. All 3 files are created with read
36 permissions for root only. kcore will not be added if there is already a
37 kcore in the cache (with the same build-id) that has the same modules at
38 the same addresses. Use the -v option to see if a copy of kcore is
39 actually made.
Arnaldo Carvalho de Meloef12a142010-01-20 15:28:45 -020040-r::
41--remove=::
Masami Hiramatsu8d8c8e42015-02-27 13:50:26 +090042 Remove a cached binary which has same build-id of specified file
43 from the cache.
44-p::
45--purge=::
46 Purge all cached binaries including older caches which have specified
47 path from the cache.
Arnaldo Carvalho de Melofbb69762012-12-07 16:28:27 -030048-M::
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -030049--missing=::
Arnaldo Carvalho de Melofbb69762012-12-07 16:28:27 -030050 List missing build ids in the cache for the specified file.
Namhyung Kimeeb49842013-02-07 18:02:11 +090051-u::
Masami Hiramatsua50d11a2015-02-26 15:54:40 +090052--update=::
53 Update specified file of the cache. Note that this doesn't remove
54 older entires since those may be still needed for annotating old
55 (or remote) perf.data. Only if there is already a cache which has
56 exactly same build-id, that is replaced by new one. It can be used
57 to update kallsyms and kernel dso to vmlinux in order to support
58 annotation.
59
Arnaldo Carvalho de Meloef12a142010-01-20 15:28:45 -020060-v::
61--verbose::
62 Be more verbose.
63
64SEE ALSO
65--------
Arnaldo Carvalho de Melo11d232e2010-05-04 10:48:22 -030066linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-buildid-list[1]