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),
t_to_ports()Kuninori Morimoto 2024-06-03ASoC: audio-graph-card2: merge graph_parse_mclk_fs() into graph_link_init()Kuninori Morimoto 2024-06-03ASoC: audio-graph-card2: expand dai_link property partKuninori Morimoto 2024-06-03ASoC: audio-graph-card2: remove ports node name checkKuninori Morimoto 2024-06-03ASoC: audio-graph-card2: add ep_to_port() / port_to_ports()Kuninori Morimoto 2024-06-03ASoC: simple-card-utils: remove both playback/capture_only checkKuninori Morimoto 2024-05-27ASoC: simple-card-utils: Split simple_fixup_sample_fmt funcMohan Kumar 2024-05-13Merge tag 'asoc-v6.10' of https://git.kernel.org/pub/scm/linux/kernel/git/bro...Takashi Iwai 2024-05-10ASoC: audio-graph-card2: call of_node_get() before of_get_next_child()Kuninori Morimoto 2024-05-09ASoC: audio-graph-card2: remove unneeded of_node_get()Kuninori Morimoto 2024-05-08ASoC: generic: Use *-y instead of *-objs in MakefileTakashi Iwai 2024-03-26ASoC: soc-jack: Get rid of legacy GPIO supportAndy Shevchenko 2024-01-12ASoC: audio-graph-card2: fix index check on graph_parse_node_multi_nm()Kuninori Morimoto 2023-12-18ASoC: simple-card-utils: Drop GPIO includeLinus Walleij 2023-12-14ASoC: audio-graph-card2: Introduce playback-only/capture-only DAI link flagsDaniel Baluta 2023-12-07ASoC: audio-graph-card2: fix off by one in graph_parse_node_multi_nm()Dan Carpenter 2023-11-27ASoC: audio-graph-card2-custom-sample: add CPU/Codec = N:M sampleKuninori Morimoto 2023-11-27ASoC: audio-graph-card2-custom-sample: Add connection imageKuninori Morimoto 2023-11-27ASoC: audio-graph-card2: add CPU:Codec = N:M supportKuninori Morimoto 2023-11-27ASoC: audio-graph-card2: use better image for Multi connectionKuninori Morimoto 2023-10-23ASoC: simple-card-utils: Make simple_util_remove() return voidUwe Kleine-König 2023-10-09ASoC: Explicitly include correct DT includesRob Herring 2023-09-26ASoC: Merge up fixesMark Brown 2023-09-25ASoC: generic: convert not to use asoc_xxx()Kuninori Morimoto 2023-09-25ASoC: simple_card_utils.h: convert not to use asoc_xxx()Kuninori Morimoto 2023-09-19ASoC: simple-card: fixup asoc_simple_probe() error handlingKuninori Morimoto 2023-09-19ASoC: simple-card-utils: fixup simple_util_startup() error handlingKuninori Morimoto 2023-08-24ASoC: audio-graph-card.c: move audio_graph_parse_of()Kuninori Morimoto 2023-08-23ASoC: audio-graph-card2: add comment for format propertyKuninori Morimoto 2023-08-14ASoC: soc-dai.h: merge DAI call back functions into opsKuninori Morimoto