summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin/export-to-sqlite-report
blob: 5ff6033e70ba42ce4253a00e4a922b1924e9c451 (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 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
drivers/iommu/rockchip-iommu.c?h=linux-6.6.y&id=ea4f640025183860792063ba5852aec60704ad8e'>IOMMU: Make dwo drivers use stateless device linksRafael J. Wysocki 2018-12-03iommu/rockchip: Make it explicitly non-modularPaul Gortmaker 2018-09-25iommu/rockchip: Free irqs in shutdown handlerHeiko Stuebner 2018-08-25Merge tag 'armsoc-late' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/...Linus Torvalds 2018-08-24Merge tag 'iommu-updates-v4.19' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds 2018-08-24iommu/rockchip: Move irq request past pm_runtime_enableMarc Zyngier 2018-08-24iommu/rockchip: Handle errors returned from PM frameworkMarc Zyngier 2018-08-08iommu: Remove the ->map_sg indirectionChristoph Hellwig 2018-07-10iommu: Remove IOMMU_OF_DECLARERob Herring 2018-06-12treewide: devm_kzalloc() -> devm_kcalloc()Kees Cook 2018-05-03iommu: rockchip: fix building without CONFIG_OFArnd Bergmann 2018-05-03iommu/rockchip: Make clock handling optionalHeiko Stuebner 2018-03-29iommu/rockchip: Support sharing IOMMU between mastersJeffy Chen 2018-03-29iommu/rockchip: Add runtime PM supportJeffy Chen 2018-03-29iommu/rockchip: Fix error handling in initJeffy Chen 2018-03-29iommu/rockchip: Use OF_IOMMU to attach devices automaticallyJeffy Chen 2018-03-29iommu/rockchip: Use IOMMU device for dma mapping operationsJeffy Chen 2018-03-29iommu/rockchip: Control clocks needed to access the IOMMUTomasz Figa 2018-03-29iommu/rockchip: Fix TLB flush of secondary IOMMUsTomasz Figa 2018-03-29iommu/rockchip: Use iopoll helpers to wait for hardwareTomasz Figa 2018-03-29iommu/rockchip: Fix error handling in attachTomasz Figa 2018-03-29iommu/rockchip: Request irqs in rk_iommu_probe()Jeffy Chen 2018-03-29iommu/rockchip: Fix error handling in probeJeffy Chen 2018-03-29iommu/rockchip: Prohibit unbind and removeJeffy Chen 2018-03-15iommu/rockchip: Perform a reset on shutdownMarc Zyngier 2017-09-01Merge branches 'arm/exynos', 'arm/renesas', 'arm/rockchip', 'arm/omap', 'arm/...Joerg Roedel