summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/syscall-counts.py
blob: e66a7730aeb5de966b25d9f6401188d0db7c305b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# system call counts
# (c) 2010, Tom Zanussi <tzanussi@gmail.com>
# Licensed under the terms of the GNU GPL License version 2
#
# Displays system-wide system call totals, broken down by syscall.
# If a [comm] arg is specified, only syscalls called by [comm] are displayed.

import os
import sys

sys.path.append(os.environ['PERF_EXEC_PATH'] + \
	'/scripts/python/Perf-Trace-Util/lib/Perf/Trace')

from perf_trace_context import *
from Core import *
from Util import syscall_name

usage = "perf script -s syscall-counts.py [comm]\n";

for_comm = None

if len(sys.argv) > 2:
	sys.exit(usage)

if len(sys.argv) > 1:
	for_comm = sys.argv[1]

syscalls = autodict()

def trace_begin():
	print "Press control+C to stop and show the summary"

def trace_end():
	print_syscall_totals()

def raw_syscalls__sys_enter(event_name, context, common_cpu,
	common_secs, common_nsecs, common_pid, common_comm,
	common_callchain, id, args):
	if for_comm is not None:
		if common_comm != for_comm:
			return
	try:
		syscalls[id] += 1
	except TypeError:
		syscalls[id] = 1

def syscalls__sys_enter(event_name, context, common_cpu,
	common_secs, common_nsecs, common_pid, common_comm,
	id, args):
	raw_syscalls__sys_enter(**locals())

def print_syscall_totals():
    if for_comm is not None:
	    print "\nsyscall events for %s:\n\n" % (for_comm),
    else:
	    print "\nsyscall events:\n\n",

    print "%-40s  %10s\n" % ("event", "count"),
    print "%-40s  %10s\n" % ("----------------------------------------", \
                                 "-----------"),

    for id, val in sorted(syscalls.iteritems(), key = lambda(k, v): (v, k), \
				  reverse = True):
	    print "%-40s  %10d\n" % (syscall_name(id), val),
upport for sub-pagesize writeback without buffer_headsChristoph Hellwig 2018-06-06xfs: convert to SPDX license tagsDave Chinner 2018-05-15xfs: one-shot cached buffersDave Chinner 2018-05-09xfs: make xfs_buf_incore out of lineDave Chinner 2018-04-09xfs: non-scrub - remove unused function parametersEric Sandeen 2018-01-29Use list_head infra-structure for buffer's log items listCarlos Maiolino 2018-01-29Split buffer's b_fspriv fieldCarlos Maiolino 2018-01-08xfs: create a new buf_ops pointer to verify structure metadataDarrick J. Wong 2018-01-08xfs: refactor xfs_verifier_error and xfs_buf_ioerrorDarrick J. Wong 2017-10-26xfs: buffer lru reference count error injection tagBrian Foster 2017-08-31xfs: perform dax_device lookup at mountDan Williams 2017-06-19xfs: push buffer of flush locked dquot to avoid quotacheck deadlockBrian Foster 2017-05-31xfs: use ->b_state to fix buffer I/O accounting release raceBrian Foster 2017-04-25xfs: fix up quotacheck buffer list error handlingBrian Foster 2017-04-03xfs: Remove obsolete declaration of xfs_buf_get_emptyNikolay Borisov 2017-02-02block: Get rid of blk_get_backing_dev_info()Jan Kara