#!/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 ue='2e1219d642c41885b82bfba2e636603c04747a28'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/pnp
AgeCommit message (Expand)Author
2013-07-18PNP / ACPI: avoid garbage in resource nameLiu ShuoX
2013-07-03Merge tag 'pm+acpi-3.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds
2013-06-29isapnp: switch to fixed_size_llseek()Al Viro
2013-05-22pnp: restore automatic resolution of DMA conflictsDavid Flater
2013-05-02Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/pow...Linus Torvalds
2013-05-01Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds
2013-05-01proc: Supply PDE attribute setting accessor functionsDavid Howells
2013-04-28Merge branch 'pnp'Rafael J. Wysocki
2013-04-23pnp: use %*phC to dump small buffersAndy Shevchenko
2013-04-23isapnp: remove debug leftoversAndy Shevchenko
2013-04-18powerpc: remove PReP platformPaul Bolle
2013-04-09procfs: new helper - PDE_DATA(inode)Al Viro
2013-03-24ACPI: Set length even for TYPE_END_TAG acpi resourceYinghai Lu
2013-03-04ACPI / glue: Add .match() callback to struct acpi_bus_typeRafael J. Wysocki
2013-02-26Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds
2013-02-22new helper: file_inode(file)Al Viro
2013-01-31PNPACPI: Fix acpi_bus_get_device() check in drivers/pnp/pnpacpi/core.cYasuaki Ishimatsu
2013-01-26drivers/pnp/pnpbios: remove depends on CONFIG_EXPERIMENTALKees Cook
2013-01-03PNP: Handle IORESOURCE_BITS in resource allocationWitold Szczeponik
2013-01-03PNP: Simplify setting of resourcesWitold Szczeponik
2012-12-11Merge tag 'driver-core-3.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/...Linus Torvalds
2012-12-07Merge branch 'acpi-general'Rafael J. Wysocki
2012-12-07pnpacpi: fix incorrect TEST_ALPHA() testAlan Cox
2012-12-04Merge branch 'acpi-general'Rafael J. Wysocki
2012-11-30ACPI / PNP: Do not crash due to stale pointer use during system resumeRafael J. Wysocki
2012-11-28pnpbios: remove CONFIG_HOTPLUG ifdefsBill Pemberton
2012-11-23ACPI / PNP: skip ACPI device nodes associated with physical nodes alreadyAdrian Hunter
2012-11-15ACPI: Move device resources interpretation code from PNP to ACPI coreRafael J. Wysocki
2012-09-21ACPI: Allow ACPI binding with USB-3.0 hubLan Tianyu
2012-06-23ACPI/PM: specify lowest allowed state for device sleep stateHuang Ying
2012-03-30Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/...Linus Torvalds
2012-03-30PNPACPI: Fix device ref leaking in acpi_pnp_matchYinghai Lu
2012-03-28Remove all #inclusions of asm/system.hDavid Howells
2012-01-06PNP: work around Dell 1536/1546 BIOS MMCONFIG bug that breaks USBBjorn Helgaas
2011-11-07Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/...Linus Torvalds
2011-11-06PNPACPI: Simplify disabled resource registrationWitold Szczeponik
2011-10-31pnp: Add export.h for EXPORT_SYMBOL/THIS_MODULE as requiredPaul Gortmaker