summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin/export-to-postgresql-report
blob: cd335b6e2a01479d066ffe398d76723abf5e742c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/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
ent Pinchart 2017-08-03drm: rcar-du: Repair vblank for DRM page flips using the VSPKieran Bingham 2017-07-29v4l: vsp1: Add pipe index argument to the VSP-DU APILaurent Pinchart 2017-06-09v4l: vsp1: Add API to map and unmap DRM buffers through the VSPLaurent Pinchart 2017-05-22v4l: vsp1: Extend VSP1 module API to allow DRM callbacksKieran Bingham 2017-03-07[media] v4l: vsp1: Adapt vsp1_du_setup_lif() interface to use a structureKieran Bingham 2016-09-09[media] v4l: vsp1: Fix tri-planar format support through DRM APILaurent Pinchart 2016-06-20[media] v4l: vsp1: Remove deprecated DRM APILaurent Pinchart 2016-06-17[media] v4l: vsp1: Group DRM RPF parameters in a structureLaurent Pinchart 2016-04-13[media] v4l: vsp1: Add global alpha support for DRM pipelineLaurent Pinchart 2016-04-13[media] v4l: vsp1: Add Z-order support for DRM pipelineLaurent Pinchart 2016-04-13[media] v4l: vsp1: Fix vsp1_du_atomic_(begin|flush) declarationsLaurent Pinchart 2016-02-19[media] v4l: vsp1: Implement atomic update for the DRM driverLaurent Pinchart 2016-02-19[media] v4l: vsp1: Add VSP+DU supportLaurent Pinchart