File: error%3A%3Ainode-uprobes.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 (36 lines) | stat: -rw-r--r-- 1,150 bytes parent folder | download | duplicates (7)
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
.\" t
.TH ERROR::INODE-UPROBES 7stap 
.SH NAME
error::inode-uprobes \- limitations of inode-uprobes

.SH DESCRIPTION

The uprobes kernel facility introduced in Linux 3.5 aims to supplant the
earlier out-of-tree utrace patch to enable user-space probing.  There
have been some functional limitations in inode-uprobes that preclude
some systemtap constructs.  Over time, we hope these regressions will
be corrected.

.TP
function.return probes
.IR process.function().return 
probes require "return-probes" or "uretprobes" functionality, which was not
implemented in the builtin inode-uprobes until kernel 3.10.  If you cannot
upgrade your kernel, consider using
.IR process.statement() 
probes placed on source line numbers at the function's return statements.

.TP
function.statement.absolute probes
In utrace-equipped kernels, systemtap made it possible to address probes
by literal addresses in the process virtual memory address space.  The 
new inode-uprobes does not have this capability.


.SH SEE ALSO
.nh
.nf
.IR stap (1),
.IR http://kernelnewbies.org/Linux_3.5 ,
.IR http://sourceware.org/systemtap/wiki/utrace ,
.IR error::reporting (7stap)