Back to home page

OSCL-LXR

 
 

    


0001 #!/bin/bash
0002 
0003 set -eufo pipefail
0004 
0005 for i in base kprobe kretprobe rawtp fentry fexit fmodret
0006 do
0007         summary=$(sudo ./bench -w2 -d5 -a rename-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
0008         printf "%-10s: %s\n" $i "$summary"
0009 done