Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.8-rc7 9 lines 210 B view raw
1#!/bin/bash 2 3set -eufo pipefail 4 5for i in base tp rawtp kprobe fentry fmodret 6do 7 summary=$(sudo ./bench -w2 -d5 -a trig-$i | tail -n1 | cut -d'(' -f1 | cut -d' ' -f3-) 8 printf "%-10s: %s\n" $i "$summary" 9done