mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-10-27 09:10:15 +00:00
. Print message at script start telling how to get te summary
. Print the syscall name using the audit-lib-python package, if
installed
. Print the errno string
. Accept both pid (if numeric) or COMM name
Now it looks like this:
[root@emilia ~]# perf trace failed-syscalls-by-pid
Press control+C to stop and show the summary
^C
syscall errors:
comm [pid] count
------------------------------ ----------
automount [1670]
syscall: futex
err = ETIMEDOUT 39
irqbalance [1462]
syscall: openat
err = ENOENT 4
perf [7888]
syscall: lseek
err = ESPIPE 1
syscall: open
err = ENOENT 24
perf [7889]
syscall: ioctl
err = EINVAL 1
syscall: readlink
err = EINVAL 2
syscall: open
err = ENOENT 389
syscall: stat
err = ENOENT 141
syscall: lseek
err = ESPIPE 3
[root@emilia ~]#
[root@emilia ~]# perf trace failed-syscalls-by-pid 1670
Press control+C to stop and show the summary
^C
syscall errors:
comm [pid] count
------------------------------ ----------
automount [1670]
syscall: futex
err = ETIMEDOUT 2
[root@emilia ~]#
[root@emilia ~]#
[root@emilia ~]#
[root@emilia ~]# perf trace failed-syscalls-by-pid automount
Press control+C to stop and show the summary
^C
syscall errors for automount:
comm [pid] count
------------------------------ ----------
automount [1669]
syscall: futex
err = ETIMEDOUT 1
automount [1670]
syscall: futex
err = ETIMEDOUT 5
[root@emilia ~]#
Cc: David S. Miller <davem@davemloft.net>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Tom Zanussi <tzanussi@gmail.com>
LKML-Reference: <new-submission>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
74 lines
2.0 KiB
Python
74 lines
2.0 KiB
Python
# failed system call counts, by pid
|
|
# (c) 2010, Tom Zanussi <tzanussi@gmail.com>
|
|
# Licensed under the terms of the GNU GPL License version 2
|
|
#
|
|
# Displays system-wide failed system call totals, broken down by pid.
|
|
# 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 *
|
|
|
|
usage = "perf trace -s syscall-counts-by-pid.py [comm|pid]\n";
|
|
|
|
for_comm = None
|
|
for_pid = None
|
|
|
|
if len(sys.argv) > 2:
|
|
sys.exit(usage)
|
|
|
|
if len(sys.argv) > 1:
|
|
try:
|
|
for_pid = int(sys.argv[1])
|
|
except:
|
|
for_comm = sys.argv[1]
|
|
|
|
syscalls = autodict()
|
|
|
|
def trace_begin():
|
|
print "Press control+C to stop and show the summary"
|
|
|
|
def trace_end():
|
|
print_error_totals()
|
|
|
|
def raw_syscalls__sys_exit(event_name, context, common_cpu,
|
|
common_secs, common_nsecs, common_pid, common_comm,
|
|
id, ret):
|
|
if (for_comm and common_comm != for_comm) or \
|
|
(for_pid and common_pid != for_pid ):
|
|
return
|
|
|
|
if ret < 0:
|
|
try:
|
|
syscalls[common_comm][common_pid][id][ret] += 1
|
|
except TypeError:
|
|
syscalls[common_comm][common_pid][id][ret] = 1
|
|
|
|
def print_error_totals():
|
|
if for_comm is not None:
|
|
print "\nsyscall errors for %s:\n\n" % (for_comm),
|
|
else:
|
|
print "\nsyscall errors:\n\n",
|
|
|
|
print "%-30s %10s\n" % ("comm [pid]", "count"),
|
|
print "%-30s %10s\n" % ("------------------------------", \
|
|
"----------"),
|
|
|
|
comm_keys = syscalls.keys()
|
|
for comm in comm_keys:
|
|
pid_keys = syscalls[comm].keys()
|
|
for pid in pid_keys:
|
|
print "\n%s [%d]\n" % (comm, pid),
|
|
id_keys = syscalls[comm][pid].keys()
|
|
for id in id_keys:
|
|
print " syscall: %-16s\n" % syscall_name(id),
|
|
ret_keys = syscalls[comm][pid][id].keys()
|
|
for ret, val in sorted(syscalls[comm][pid][id].iteritems(), key = lambda(k, v): (v, k), reverse = True):
|
|
print " err = %-20s %10d\n" % (strerror(ret), val),
|