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),
neRusty Russell 2008-12-30cpumask: switch over to cpu_online/possible/active/present_mask: coreRusty Russell 2008-12-13cpumask: centralize cpu_online_map and cpu_possible_mapRusty Russell 2008-11-30cpuinit fixes in kernel/*Al Viro 2008-11-06cpumask: introduce new API, without changing anythingRusty Russell 2008-10-08Merge branches 'sched/devel', 'sched/cpu-hotplug', 'sched/cpusets' and 'sched...Ingo Molnar 2008-09-08kernel/cpu.c: create a CPU_STARTING cpu_chain notifierManfred Spraul 2008-09-06kernel/cpu.c: Move the CPU_DYING notifiersManfred Spraul 2008-08-12cpu hotplug: s390 doesn't support additional_cpus anymore.Heiko Carstens 2008-08-11sched, cpu hotplug: fix set_cpus_allowed() use in hotplug callbacksDmitry Adamushko 2008-07-28Merge branch 'linus' into cpus4096Ingo Molnar 2008-07-28cpu masks: optimize and clean up cpumask_of_cpu()Linus Torvalds 2008-07-28stop_machine(): stop_machine_run() changed to use cpu maskRusty Russell 2008-07-28Hotplug CPU: don't check cpu_online after take_cpu_downRusty Russell 2008-07-28Simplify stop_machineRusty Russell 2008-07-26cpumask: export cpumask_of_cpu_mapIngo Molnar 2008-07-26cpumask: put cpumask_of_cpu_map in the initdata sectionMike Travis 2008-07-26cpumask: make cpumask_of_cpu_map genericMike Travis 2008-07-25workqueues: make get_online_cpus() useable for work->func()Oleg Nesterov 2008-07-23Merge branch 'sched/for-linus' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds 2008-07-18Merge branch 'linus' into cpus4096Ingo Molnar 2008-07-18cpu hotplug: Make cpu_active_map synchronization dependency clearMax Krasnyansky 2008-07-18cpu hotplug, sched: Introduce cpu_active_map and redo sched domain managment ...Max Krasnyansky 2008-07-16force offline the processor during hot-removalZhang Rui 2008-07-16Merge branch 'linus' into cpus4096Ingo Molnar 2008-06-06sched: Move cpu masks from kernel/sched.c into kernel/cpu.cMax Krasnyansky 2008-05-23core: use performance variant for_each_cpu_mask_nrMike Travis 2008-04-30kernel: replace remaining __FUNCTION__ occurrencesHarvey Harrison 2008-04-29simplify cpu_hotplug_begin()/put_online_cpus()Oleg Nesterov 2008-04-29cpu: fix section mismatch warning in reference to register_cpu_notifierSam Ravnborg 2008-04-29cpu: fix section mismatch warnings in *cpu_downSam Ravnborg 2008-04-29cpu: fix section mismatch warning in unregister_cpu_notifierSam Ravnborg 2008-04-19generic: use new set_cpus_allowed_ptr functionMike Travis