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
d>samples: ftrace: Replace bti assembly with hint for older compilerGONG, Ruiqi 2023-07-10arm64: ftrace: Add direct call trampoline samples supportFlorent Revest 2023-07-10samples: ftrace: Save required argument registers in sample trampolinesFlorent Revest 2023-05-04Merge tag 'loongarch-6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/ch...Linus Torvalds 2023-05-01LoongArch: ftrace: Add direct call trampoline samples supportYouling Tang 2023-03-21ftrace: Rename _ftrace_direct_multi APIs to _ftrace_direct APIsFlorent Revest 2023-03-21ftrace: Replace uses of _ftrace_direct APIs with _ftrace_direct_multiFlorent Revest 2023-03-21ftrace: Let unregister_ftrace_direct_multi() call ftrace_free_filter()Florent Revest 2023-02-07samples: ftrace: Make some global variables staticTom Rix 2023-02-07ftrace: sample: avoid open-coded 64-bit divisionArnd Bergmann 2023-02-07samples: ftrace: Include the nospec-branch.h only for x86Song Shuai 2023-01-25ftrace: Add sample with custom opsMark Rutland 2023-01-24ftrace: Export ftrace_free_filter() to modulesMark Rutland 2022-10-17x86/ftrace: Make it call depth tracking awarePeter Zijlstra