1 2 3 4 5 6 7
#! stap -p2 probe kernel.function("vfs_read") { # this should fail - using $return not in a '.return' probe printf("in sys_read - return = %d\n", $return) }