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
id functionKefeng Wang 2019-06-05treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 428Thomas Gleixner 2019-05-13Merge branch 'for-5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/denni...Linus Torvalds 2019-05-08percpu: remove spurious lock dependency between percpu and schedJohn Sperbeck 2019-03-18percpu: stop printing kernel addressesMatteo Croce 2019-03-13percpu: use chunk scan_hint to skip some scanningDennis Zhou 2019-03-13percpu: convert chunk hints to be based on pcpu_block_mdDennis Zhou 2019-03-13percpu: make pcpu_block_md genericDennis Zhou 2019-03-13percpu: use block scan_hint to only scan forwardDennis Zhou 2019-03-13percpu: remember largest area skipped during allocationDennis Zhou 2019-03-13percpu: add block level scan_hintDennis Zhou 2019-03-13percpu: set PCPU_BITMAP_BLOCK_SIZE to PAGE_SIZEDennis Zhou 2019-03-13percpu: relegate chunks unusable when failing small allocationsDennis Zhou 2019-03-13percpu: manage chunks based on contig_bits instead of free_bytesDennis Zhou 2019-03-13percpu: introduce helper to determine if two regions overlapDennis Zhou 2019-03-13percpu: do not search past bitmap when allocating an areaDennis Zhou 2019-03-13percpu: update free path with correct new free regionDennis Zhou