208c439120
Remove "legacy" benchmarks triggered by syscalls in favor of newly added in-kernel/batched benchmarks. Drop -batched suffix now as well. Next patch will restore "feature parity" by adding back tp/raw_tp/fmodret benchmarks based on in-kernel kfunc approach. Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Link: https://lore.kernel.org/r/20240326162151.3981687-4-andrii@kernel.org Signed-off-by: Alexei Starovoitov <ast@kernel.org>
10 lines
237 B
Bash
Executable File
10 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eufo pipefail
|
|
|
|
for i in usermode-count syscall-count {uprobe,uretprobe}-{nop,push,ret}
|
|
do
|
|
summary=$(sudo ./bench -w2 -d5 -a trig-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-)
|
|
printf "%-15s: %s\n" $i "$summary"
|
|
done
|