Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/testing/selftests/bpf/benchs/run_bench_uprobes.sh
29270 views
1
#!/bin/bash
2
3
set -eufo pipefail
4
5
for i in usermode-count syscall-count {uprobe,uretprobe}-{nop,push,ret,nop5}
6
do
7
summary=$(sudo ./bench -w2 -d5 -a trig-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
8
printf "%-15s: %s\n" $i "$summary"
9
done
10
11