#!/bin/bash # description: export perf data to a postgresql 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-postgresql-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-postgresql.py $dbname $columns $calls e='5fee36095cda45d34555aed3a2e8973b80cd6bf8'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/scripts/Makefile
AgeCommit message (Expand)Author
2020-04-09kbuild: remove -I$(srctree)/tools/include from scripts/MakefileMasahiro Yamada
2020-02-04kbuild: rename hostprogs-y/always to hostprogs/always-yMasahiro Yamada
2020-01-29Merge tag 'tty-5.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/greg...Linus Torvalds
2019-12-17tty: vt: move conmakehash to drivers/tty/vt/ from scripts/Masahiro Yamada
2019-12-13scripts/sorttable: Implement build-time ORC unwind table sortingShile Zhang
2019-12-13scripts/sorttable: Rename 'sortextable' to 'sorttable'Shile Zhang
2019-11-11video/logo: move pnmtologo tool to drivers/video/logo/ from scripts/Masahiro Yamada
2019-09-27Merge branch 'next-integrity' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds
2019-08-25kbuild: pkg: clean up package files/dirs from the top MakefileMasahiro Yamada
2019-08-05MODSIGN: Export module signature definitionsThiago Jung Bauermann
2019-06-15kbuild: remove build_unifdef target in scripts/MakefileMasahiro Yamada
2019-02-27scripts/gdb: do not descend into scripts/gdb from scriptsMasahiro Yamada
2018-12-01kbuild: descend into scripts/gcc-plugins/ via scripts/MakefileMasahiro Yamada
2018-12-01kbuild: move modpost out of 'scripts' targetMasahiro Yamada
2018-10-02kbuild: consolidate Devicetree dtb build rulesRob Herring
2018-07-18kbuild: Rename HOST_LOADLIBES to KBUILD_HOSTLDLIBSLaura Abbott
2018-07-18kbuild: move bin2c back to scripts/ from scripts/basic/Masahiro Yamada
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman