blob: 20909196c0490caba97abc3106984b0705730cd8 (
plain)
1
2
3
4
5
6
7
8
9
|
#! stap -p4
/* All other tracepoint memory probes are in another test vm.tracepoints.stp */
probe vm.kmalloc {
println(name)
printf("%-15s %-15p %-15s %-15p %-15d %-15d %-15d %-15s \n", execname(), call_site, caller_function, ptr, bytes_req, bytes_alloc, gfp_flags, gfp_flag_name)
}
|