File: warning%3A%3Apass5.7stap

package info (click to toggle)
systemtap 5.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 47,964 kB
  • sloc: cpp: 80,838; ansic: 54,757; xml: 49,725; exp: 43,665; sh: 11,527; python: 5,003; perl: 2,252; tcl: 1,312; makefile: 1,006; javascript: 149; lisp: 105; awk: 101; asm: 91; java: 70; sed: 16
file content (59 lines) | stat: -rw-r--r-- 1,457 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.\" t    -*- nroff -*-

.TH ERROR::PASS5 7stap 
.SH NAME
warning::pass5 \- systemtap pass-5 warnings

.\" macros
.de SAMPLE

.nr oldin \\n(.i
.br
.RS
.nf
.nh
..
.de ESAMPLE
.hy
.fi
.RE
.in \\n[oldin]u

..

.SH DESCRIPTION
Warnings that occur during pass 5 (execution) can have a variety of causes.


.TP
probe insertion errors
With any of the systemtap runtimes, it may be possible that the
backends are unable to insert probe points requested by the systemtap
script.  For example, you may see errors such as
.SAMPLE
WARNING: probe [...] registration error (rc -524)
.ESAMPLE
(524 is a kernel error code for ENOTSUPP).  These situations are out
of systemtap's control, and result in some probes not receiving any
hits.  This may be caused by temporary resource constraints or
permanent problems.  One common permanent problem is such a probe
point being placed at instructions that the runtime (kernel kprobes,
uprobes or dyninst) cannot decode or intercept.  A possible workaround
is to move the probe points slightly in the script, so as to target a
nearby statement, or a caller, or a callee.  See also
.IR error::dwarf (7stap).

.SH GATHERING MORE INFORMATION
Increasing the verbosity of pass-5
with an option such as
.IR "--vp 00001"
can help pinpoint the problem.

.SH SEE ALSO
.nh
.nf
.IR stap (1),
.IR http://sourceware.org/systemtap/wiki/TipExhaustedResourceErrors ,
.IR error::pass5 (7stap),
.IR error::reporting (7stap)
.IR error::dwarf (7stap)