summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/syscall-counts.py
blob: f977e85ff04950cef3cc5550dcdca79a5d688568 (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
# 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 *

usage = "perf trace -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():
	pass

def trace_end():
	print_syscall_totals()

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

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 "%-40d  %10d\n" % (id, val),
EXIT_SUCCESS when help is invokedJohn Kacur 2024-02-12tools/rtla: Replace setting prio with nice for SCHED_OTHERlimingming3 2024-02-12tools/rtla: Remove unused sched_getattr() functionDaniel Bristot de Oliveira 2024-02-12tools/rtla: Fix clang warning about mount_point var sizeDaniel Bristot de Oliveira 2024-02-12tools/rtla: Fix uninitialized bucket/data->bucket_size warningDaniel Bristot de Oliveira 2024-02-12tools/rtla: Fix Makefile compiler options for clangDaniel Bristot de Oliveira 2023-10-30rtla: Fix uninitialized variable foundColin Ian King 2023-09-22rtla/timerlat: Do not stop user-space if a cpu is offlineDaniel Bristot de Oliveira 2023-09-12rtla/timerlat_aa: Fix previous IRQ delay for IRQs that happens after thread s...Daniel Bristot de Oliveira 2023-09-12rtla/timerlat_aa: Fix negative IRQ delayDaniel Bristot de Oliveira 2023-09-12rtla/timerlat_aa: Zero thread sum after every sample analysisDaniel Bristot de Oliveira 2023-06-13rtla/timerlat_hist: Add timerlat user-space supportDaniel Bristot de Oliveira 2023-06-13rtla/timerlat_top: Add timerlat user-space supportDaniel Bristot de Oliveira 2023-06-13rtla/hwnoise: Reduce runtime to 75%Daniel Bristot de Oliveira 2023-06-13rtla: Start the tracers after creating all instancesDaniel Bristot de Oliveira 2023-06-13rtla/timerlat_hist: Add auto-analysis supportDaniel Bristot de Oliveira 2023-06-13rtla/timerlat: Give timerlat auto analysis its own instanceDaniel Bristot de Oliveira 2023-06-13rtla: Automatically move rtla to a house-keeping cpuDaniel Bristot de Oliveira 2023-06-13rtla: Change monitored_cpus from char * to cpu_set_tDaniel Bristot de Oliveira 2023-06-13rtla: Add --house-keeping optionDaniel Bristot de Oliveira 2023-06-13rtla: Add -C cgroup supportDaniel Bristot de Oliveira 2023-04-25rtla/timerlat: Fix "Previous IRQ" auto analysis' lineDaniel Bristot de Oliveira 2023-04-25rtla/timerlat: Add auto-analysis only optionDaniel Bristot de Oliveira 2023-04-25rtla: Add .gitignore fileRong Tao