#!/bin/bash # description: export perf data to a sqlite3 database # args: [database name] [columns] [calls] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 3 ] ; then echo "usage: export-to-sqlite-report [database name] [columns] [calls]" exit fi if [ "$n_args" -gt 2 ] ; then dbname=$1 columns=$2 calls=$3 shift 3 elif [ "$n_args" -gt 1 ] ; then dbname=$1 columns=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then dbname=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-sqlite.py $dbname $columns $calls pe='hidden' name='id' value='d2a9721d807de405b198291badcc807700746781'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/scripts/Makefile.btf
AgeCommit message (Expand)Author
2025-04-15kbuild, bpf: Enable --btf_features=attributesIhor Solodrai
2025-02-24kbuild, bpf: Correct pahole version that supports distilled base btf featurePu Lehui
2024-11-11kbuild,bpf: Pass make jobs' value to paholeFlorian Schmaus
2024-06-21kbuild,bpf: Add module-specific pahole flags for distilled base BTFAlan Maguire
2024-06-12kbuild: bpf: Tell pahole to DECL_TAG kfuncsDaniel Xu
2024-05-18kbuild, bpf: Use test-ge check for v1.25-only paholeAlan Maguire
2024-05-09kbuild,bpf: Switch to using --btf_features for pahole v1.26 and laterAlan Maguire
2023-10-28kbuild: avoid too many execution of scripts/pahole-flags.shMasahiro Yamada