#!/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 name='id' value='f3821276f62c80184f4b7543e423ec5c7f43bbe1'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/memory/Makefile
AgeCommit message (Expand)Author
2018-04-30memory: tegra: Squash tegra20-mc into common tegra-mc driverDmitry Osipenko
2017-12-02memory: ti-emif-sram: introduce relocatable suspend/resume handlersDave Gerlach
2017-11-16Merge tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/a...Linus Torvalds
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman
2017-09-18memory: brcmstb: Add driver for DPFEMarkus Mayer
2016-11-14memory: davinci: add support for da8xx DDR2/mDDR controllerBartosz Golaszewski
2016-06-02memory: add Atmel EBI (External Bus Interface) driverBoris Brezillon
2016-04-18memory: Add support for Exynos SROM driverPankaj Dubey
2016-02-25memory: mediatek: Add SMI driverYong Wu
2015-07-17memory: add ARM PL172 MultiPort Memory Controller driverJoachim Eastwood
2015-03-26memory: jz4780-nemc: driver for the NEMC on JZ4780 SoCsAlex Smith
2014-12-09Merge tag 'omap-gpmc-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds
2014-12-04memory: Add NVIDIA Tegra memory controller supportThierry Reding
2014-11-28memory: gpmc: Move omap gpmc code to live under driversTony Lindgren
2014-08-25Merge tag 'at91-drivers-for-3.17' of git://git.kernel.org/pub/scm/linux/kerne...Nicolas Ferre
2014-07-29memory: Freescale CoreNet Coherency Fabric error reporting driverScott Wood
2014-07-15memory: add a driver for atmel ram controllersAlexandre Belloni