#!/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 1E-v0.0-v7.0 Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/fs/logfs
AgeCommit message (Expand)Author
2016-05-09logfs: no need to lock directory in lseekAl Viro
2016-05-09more trivial ->iterate_shared conversionsAl Viro
2016-04-04mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macrosKirill A. Shutemov
2016-01-22wrappers for ->i_mutex accessAl Viro
2016-01-20Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek...Linus Torvalds
2016-01-14kmemcg: account certain kmem allocations to memcgVladimir Davydov
2016-01-14logfs: fix logfs build errors and dependenciesArnd Bergmann
2016-01-12Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds
2016-01-09logfs: constify logfs_block_ops structuresJulia Lawall
2015-12-08don't put symlink bodies in pagecache into highmemAl Viro
2015-12-06logfs: don't duplicate page_symlink_inode_operationsAl Viro
2015-11-25kbuild: Allow to specify composite modules with modname-mMichal Marek
2015-11-06mm, fs: introduce mapping_gfp_constraint()Michal Hocko
2015-11-05logfs: fix build warningSudip Mukherjee
2015-08-13block: remove bio_get_nr_vecs()Kent Overstreet
2015-07-29block: add a bi_error field to struct bioChristoph Hellwig
2015-05-10logfs: fix a pagecache leak for symlinksAl Viro
2015-04-15VFS: normal filesystems (and lustre): d_inode() annotationsDavid Howells
2015-04-11make new_sync_{read,write}() staticAl Viro
2014-08-06fs/logfs/readwrite.c: kernel-doc warning fixesFabian Frederick
2014-05-06write_iter variants of {__,}generic_file_aio_write()Al Viro
2014-05-06switch simple generic_file_aio_read() users to ->read_iter()Al Viro
2014-04-03mm + fs: store shadow entries in page cacheJohannes Weiner
2014-01-30Merge branch 'for-3.14/core' of git://git.kernel.dk/linux-blockLinus Torvalds
2014-01-23logfs: check for the return value after calling find_or_create_page()Younger Liu