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),
2006-12-31[PATCH] restore ->pdeath_signal behaviourOleg Nesterov 2006-12-22[PATCH] Fix reparenting to the same thread group. (take 2)Eric W. Biederman 2006-12-22[PATCH] fdtable: Provide free_fdtable() wrapperVadim Lobanov 2006-12-10[PATCH] fdtable: Remove the free_files fieldVadim Lobanov 2006-12-10[PATCH] fdtable: Make fdarray and fdsets equal in sizeVadim Lobanov 2006-12-08[PATCH] session_of_pgrp: kill unnecessary do_each_task_pid(PIDTYPE_PGID)Oleg Nesterov 2006-12-08[PATCH] add child reaper to pid_namespaceSukadev Bhattiprolu 2006-12-08[PATCH] rename struct namespace to struct mnt_namespaceKirill Korotaev 2006-12-08[PATCH] add process_session() helper routine: deprecate old fieldCedric Le Goater 2006-12-08[PATCH] add process_session() helper routineCedric Le Goater 2006-12-08[PATCH] make set_special_pids() staticOleg Nesterov 2006-12-08[PATCH] tty: ->signal->tty lockingPeter Zijlstra 2006-12-07[PATCH] taskstats: cleanup do_exit() pathOleg Nesterov 2006-10-28[PATCH] taskstats_tgid_free: fix usageOleg Nesterov 2006-10-02[PATCH] namespaces: exit_task_namespaces() invalidates nsproxyCedric Le Goater 2006-10-02[PATCH] namespaces: incorporate fs namespace into nsproxySerge E. Hallyn 2006-10-02[PATCH] namespaces: add nsproxySerge E. Hallyn 2006-10-01[PATCH] csa: convert CONFIG tag for extended accounting routinesJay Lan 2006-09-30[PATCH] BLOCK: Remove duplicate declaration of exit_io_context() [try #6]David Howells 2006-09-29[PATCH] introduce TASK_DEAD stateOleg Nesterov 2006-09-29[PATCH] kill PF_DEAD flagOleg Nesterov 2006-09-29[PATCH] set EXIT_DEAD state in do_exit(), not in schedule()Oleg Nesterov 2006-09-29[PATCH] reparent_to_init(): use has_rt_policy()Oleg Nesterov 2006-09-29[PATCH] exit: fix crash caseAlan Cox 2006-09-29[PATCH] has_stopped_jobs() cleanupRoland McGrath 2006-09-29[PATCH] pidspace: is_init()Sukadev Bhattiprolu 2006-09-29[PATCH] Fix unserialized task->files changingKirill Korotaev 2006-09-02[PATCH] eligible_child: remove an obsolete ->tgid checkOleg Nesterov 2006-09-01[PATCH] task delay accounting fixesShailabh Nagar