summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/vm.tracepoints.kmalloc.stp
blob: f723737c6713ad35d6d1620d69466d2cae58b22e (plain)
1
2
3
4
5
6
7
8
9
#! stap -up4

/* 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)
}