Blame view

tools/perf/Documentation/perf-buildid-cache.txt 2.57 KB
ef12a1413   Arnaldo Carvalho de Melo   perf buildid-cach...
1
2
3
4
5
6
7
8
9
10
  perf-buildid-cache(1)
  =====================
  
  NAME
  ----
  perf-buildid-cache - Manage build-id cache.
  
  SYNOPSIS
  --------
  [verse]
11d232ec2   Arnaldo Carvalho de Melo   perf inject: Add ...
11
  'perf buildid-cache <options>'
ef12a1413   Arnaldo Carvalho de Melo   perf buildid-cach...
12
13
14
  
  DESCRIPTION
  -----------
8d8c8e4cb   Masami Hiramatsu   perf buildid-cach...
15
16
17
  This command manages the build-id cache. It can add, remove, update and purge
  files to/from the cache. In the future it should as well set upper limits for
  the space used by the cache, etc.
6430a94ea   Masami Hiramatsu   perf buildid-cach...
18
19
20
  This also scans the target binary for SDT (Statically Defined Tracing) and
  record it along with the buildid-cache, which will be used by perf-probe.
  For more details, see linkperf:perf-probe[1].
ef12a1413   Arnaldo Carvalho de Melo   perf buildid-cach...
21
22
23
24
25
26
  
  OPTIONS
  -------
  -a::
  --add=::
          Add specified file to the cache.
5a79eef4e   Sihyeon Jang   perf buildid-cach...
27
28
29
  -f::
  --force::
  	Don't complain, do it.
fc1b691d7   Adrian Hunter   perf buildid-cach...
30
31
32
33
34
35
36
37
38
39
40
41
42
  -k::
  --kcore::
          Add specified kcore file to the cache. For the current host that is
          /proc/kcore which requires root permissions to read. Be aware that
          running 'perf buildid-cache' as root may update root's build-id cache
          not the user's. Use the -v option to see where the file is created.
          Note that the copied file contains only code sections not the whole core
          image. Note also that files "kallsyms" and "modules" must also be in the
          same directory and are also copied.  All 3 files are created with read
          permissions for root only. kcore will not be added if there is already a
          kcore in the cache (with the same build-id) that has the same modules at
          the same addresses. Use the -v option to see if a copy of kcore is
          actually made.
ef12a1413   Arnaldo Carvalho de Melo   perf buildid-cach...
43
44
  -r::
  --remove=::
8d8c8e4cb   Masami Hiramatsu   perf buildid-cach...
45
46
47
48
49
50
          Remove a cached binary which has same build-id of specified file
          from the cache.
  -p::
  --purge=::
          Purge all cached binaries including older caches which have specified
  	path from the cache.
9a73c3085   Ravi Bangoria   perf buildid-cach...
51
52
53
  -P::
  --purge-all::
  	Purge all cached binaries. This will flush out entire cache.
fbb6976c2   Arnaldo Carvalho de Melo   perf buildid-cach...
54
  -M::
48000a1ae   Arnaldo Carvalho de Melo   perf tools: Remov...
55
  --missing=::
fbb6976c2   Arnaldo Carvalho de Melo   perf buildid-cach...
56
  	List missing build ids in the cache for the specified file.
eeb498454   Namhyung Kim   perf buildid-cach...
57
  -u::
a50d11a10   Masami Hiramatsu   perf buildid-cach...
58
59
60
61
62
63
64
  --update=::
  	Update specified file of the cache. Note that this doesn't remove
  	older entires since those may be still needed for annotating old
  	(or remote) perf.data. Only if there is already a cache which has
  	exactly same build-id, that is replaced by new one. It can be used
  	to update kallsyms and kernel dso to vmlinux in order to support
  	annotation.
8e1e0d746   Ravi Bangoria   perf buildid-cach...
65
66
67
  -l::
  --list::
  	List all valid binaries from cache.
ef12a1413   Arnaldo Carvalho de Melo   perf buildid-cach...
68
69
70
  -v::
  --verbose::
  	Be more verbose.
f045b8c4b   Krister Johansen   perf buildid-cach...
71
72
73
74
  --target-ns=PID:
  	Obtain mount namespace information from the target pid.  This is
  	used when creating a uprobe for a process that resides in a
  	different mount namespace from the perf(1) utility.
ef12a1413   Arnaldo Carvalho de Melo   perf buildid-cach...
75
76
  SEE ALSO
  --------
11d232ec2   Arnaldo Carvalho de Melo   perf inject: Add ...
77
  linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-buildid-list[1]