summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin/syscall-counts-report
blob: 0f0e9d453bb48a606b3c6522a104bd16499fede8 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
# description: system-wide syscall counts
# args: [comm]
if [ $# -gt 0 ] ; then
    if ! expr match "$1" "-" > /dev/null ; then
	comm=$1
	shift
    fi
fi
perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/syscall-counts.py $comm
6b147'>treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441Thomas Gleixner 2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Thomas Gleixner 2019-05-24treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 36Thomas Gleixner 2019-04-08KEYS: trusted: fix -Wvarags warningndesaulniers@google.com 2019-03-10Merge branch 'next-integrity' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds 2019-02-22KEYS: user: Align the payload bufferEric Biggers 2019-02-15keys: Fix dependency loop between construction record and auth keyDavid Howells 2019-02-04integrity, KEYS: add a reference to platform keyringKairui Song 2018-10-26KEYS: Move trusted.h to include/keys [ver #2]Denis Kenzior 2018-10-26KEYS: Provide missing asymmetric key subops for new key type ops [ver #2]David Howells 2018-06-15docs: Fix some broken referencesMauro Carvalho Chehab 2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman 2017-08-29net: rxrpc: Replace time_t type with time64_t typeBaolin Wang