blob: e7e88ec7b84a1a0714e2e75d7a1c56e08dd0af77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#! stap -p4
# this tests access to parameters from prologue-end PC addresses which
# land inside the scope of an inline instance; the functionality is
# provided by searching the function's DIE rather than the by PC
# proximity. (PR 1244)
%( kernel_v >= "2.6.18" %?
probe kernel.function("__audit_getname@kernel/auditsc.c")
{
log(kernel_string($name));
}
%:
probe kernel.function("audit_getname@kernel/auditsc.c")
{
log(kernel_string($name));
}
%)
|