#!/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 idden' name='id' value='a9aabb3b839aba094ed80861054993785c61462c'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/scripts/livepatch
AgeCommit message (Expand)Author
2026-02-05livepatch: Free klp_{object,func}_ext data after initializationPetr Pavlu
2026-02-05livepatch: Fix having __klp_objects relics in non-livepatch modulesPetr Pavlu
2026-01-29livepatch/klp-build: Require Clang assembler >= 20Josh Poimboeuf
2026-01-27livepatch/klp-build: Fix klp-build vs CONFIG_MODULE_SRCVERSION_ALLJosh Poimboeuf
2025-11-18objtool/klp: Only enable --checksum when neededJosh Poimboeuf
2025-10-14livepatch/klp-build: Add --show-first-changed option to show function divergenceJosh Poimboeuf
2025-10-14livepatch/klp-build: Add --debug option to show cloning decisionsJosh Poimboeuf
2025-10-14livepatch/klp-build: Introduce klp-build script for generating livepatch modulesJosh Poimboeuf
2025-10-14livepatch/klp-build: Add stub init code for livepatch modulesJosh Poimboeuf
2025-10-14livepatch/klp-build: Introduce fix-patch-lines script to avoid __LINE__ diff ...Josh Poimboeuf