#!/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 den' name='id' value='4d374bacd7c9665179f9752a52d5d602c45d8190'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/fs/binfmt_elf_fdpic.c
AgeCommit message (Expand)Author
2018-06-12treewide: kmalloc() -> kmalloc_array()Kees Cook
2018-04-11exec: introduce finalize_exec() before start_thread()Kees Cook
2017-11-17Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds
2017-10-12elf_fdpic: fix unused variable warningArnd Bergmann
2017-10-02Merge branch 'fdpic' of http://git.linaro.org/people/nicolas.pitre/linux into...Russell King
2017-09-14Merge branch 'work.set_fs' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds
2017-09-10binfmt_elf_fdpic: fix crash on MMU system with dynamic binariesNicolas Pitre
2017-09-10ARM: enable elf_fdpic on systems with an MMUNicolas Pitre
2017-09-04fs: fix kernel_read prototypeChristoph Hellwig
2017-08-01binfmt: Introduce secureexec flagKees Cook
2017-03-02sched/headers: Prepare to move cputime functionality from <linux/sched.h> int...Ingo Molnar
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Ingo Molnar
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Ingo Molnar
2017-02-01fs/binfmt: Convert obsolete cputime type to nsecsFrederic Weisbecker
2017-02-01sched/cputime: Convert task/group cputime to nsecsFrederic Weisbecker
2017-02-01sched/cputime: Introduce special task_cputime_t() API to return old-typed cpu...Frederic Weisbecker
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyLinus Torvalds