1 2 3 4 5 6 7 8
#! stap -p2 # read access to target variables should work in .return probes probe kernel.function("vfs_read").return { printf("count is %d\n", $count) }