Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf scripts: Fallback to syscalls:* when raw_syscalls:* is not available

Older kernels (e.g., RHEL6) do system call tracing via the
syscalls:sys_{enter,exit} tracepoints rather than using raw_syscalls:*.

Update perf python and perl scripts to fallback to syscalls:* when
raw_syscalls:* isn't available.

Signed-off-by: Daniel Bristot de Oliveira <bristot@redhat.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/5a6c64081a3375bc3bc66351b14559678ef4d71e.1402507908.git.bristot@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Daniel Bristot de Oliveira and committed by
Arnaldo Carvalho de Melo
07100877 1c92f885

+35 -5
+2 -1
tools/perf/scripts/perl/bin/failed-syscalls-record
··· 1 1 #!/bin/bash 2 - perf record -e raw_syscalls:sys_exit $@ 2 + (perf record -e raw_syscalls:sys_exit $@ || \ 3 + perf record -e syscalls:sys_exit $@) 2> /dev/null
+5
tools/perf/scripts/perl/failed-syscalls.pl
··· 26 26 } 27 27 } 28 28 29 + sub syscalls::sys_exit 30 + { 31 + raw_syscalls::sys_exit(@_) 32 + } 33 + 29 34 sub trace_end 30 35 { 31 36 printf("\nfailed syscalls by comm:\n\n");
+2 -1
tools/perf/scripts/python/bin/failed-syscalls-by-pid-record
··· 1 1 #!/bin/bash 2 - perf record -e raw_syscalls:sys_exit $@ 2 + (perf record -e raw_syscalls:sys_exit $@ || \ 3 + perf record -e syscalls:sys_exit $@) 2> /dev/null
+2 -1
tools/perf/scripts/python/bin/sctop-record
··· 1 1 #!/bin/bash 2 - perf record -e raw_syscalls:sys_enter $@ 2 + (perf record -e raw_syscalls:sys_enter $@ || \ 3 + perf record -e syscalls:sys_enter $@) 2> /dev/null
+2 -1
tools/perf/scripts/python/bin/syscall-counts-by-pid-record
··· 1 1 #!/bin/bash 2 - perf record -e raw_syscalls:sys_enter $@ 2 + (perf record -e raw_syscalls:sys_enter $@ || \ 3 + perf record -e syscalls:sys_enter $@) 2> /dev/null
+2 -1
tools/perf/scripts/python/bin/syscall-counts-record
··· 1 1 #!/bin/bash 2 - perf record -e raw_syscalls:sys_enter $@ 2 + (perf record -e raw_syscalls:sys_enter $@ || \ 3 + perf record -e syscalls:sys_enter $@) 2> /dev/null
+5
tools/perf/scripts/python/failed-syscalls-by-pid.py
··· 50 50 except TypeError: 51 51 syscalls[common_comm][common_pid][id][ret] = 1 52 52 53 + def syscalls__sys_exit(event_name, context, common_cpu, 54 + common_secs, common_nsecs, common_pid, common_comm, 55 + id, ret): 56 + raw_syscalls__sys_exit(**locals()) 57 + 53 58 def print_error_totals(): 54 59 if for_comm is not None: 55 60 print "\nsyscall errors for %s:\n\n" % (for_comm),
+5
tools/perf/scripts/python/sctop.py
··· 53 53 except TypeError: 54 54 syscalls[id] = 1 55 55 56 + def syscalls__sys_enter(event_name, context, common_cpu, 57 + common_secs, common_nsecs, common_pid, common_comm, 58 + id, args): 59 + raw_syscalls__sys_enter(**locals()) 60 + 56 61 def print_syscall_totals(interval): 57 62 while 1: 58 63 clear_term()
+5
tools/perf/scripts/python/syscall-counts-by-pid.py
··· 48 48 except TypeError: 49 49 syscalls[common_comm][common_pid][id] = 1 50 50 51 + def syscalls__sys_enter(event_name, context, common_cpu, 52 + common_secs, common_nsecs, common_pid, common_comm, 53 + id, args): 54 + raw_syscalls__sys_enter(**locals()) 55 + 51 56 def print_syscall_totals(): 52 57 if for_comm is not None: 53 58 print "\nsyscall events for %s:\n\n" % (for_comm),
+5
tools/perf/scripts/python/syscall-counts.py
··· 44 44 except TypeError: 45 45 syscalls[id] = 1 46 46 47 + def syscalls__sys_enter(event_name, context, common_cpu, 48 + common_secs, common_nsecs, common_pid, common_comm, 49 + id, args): 50 + raw_syscalls__sys_enter(**locals()) 51 + 47 52 def print_syscall_totals(): 48 53 if for_comm is not None: 49 54 print "\nsyscall events for %s:\n\n" % (for_comm),