#!/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 value='7464ff8bf2d762251b9537863db0e1caf9b0e402'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/kernel/task_work.c
AgeCommit message (Expand)Author
2022-03-10resume_user_mode: Move to resume_user_mode.hEric W. Biederman
2022-03-10task_work: Introduce task_work_pendingEric W. Biederman
2021-04-30kasan: record task_work_add() call stackWalter Wu
2021-04-11task_work: add helper for more targeted task_work cancelingJens Axboe
2020-12-12task_work: remove legacy TWA_SIGNAL pathJens Axboe
2020-11-09Merge tag 'core-entry-notify-signal' of git://git.kernel.org/pub/scm/linux/ke...Jens Axboe
2020-10-29task_work: Use TIF_NOTIFY_SIGNAL if availableJens Axboe
2020-10-17task_work: cleanup notification modesJens Axboe
2020-08-13task_work: only grab task signal lock when neededJens Axboe
2020-06-30task_work: teach task_work_add() to do signal_wake_up()Oleg Nesterov
2020-03-02task_work_run: don't take ->pi_lock unconditionallyOleg Nesterov