2014-12-29 13:52:36 +01:00
|
|
|
perf-y += builtin-bench.o
|
2014-12-29 15:13:44 +01:00
|
|
|
perf-y += builtin-annotate.o
|
2015-11-17 14:53:21 +01:00
|
|
|
perf-y += builtin-config.o
|
2014-12-29 15:13:44 +01:00
|
|
|
perf-y += builtin-diff.o
|
|
|
|
perf-y += builtin-evlist.o
|
|
|
|
perf-y += builtin-help.o
|
|
|
|
perf-y += builtin-sched.o
|
|
|
|
perf-y += builtin-buildid-list.o
|
|
|
|
perf-y += builtin-buildid-cache.o
|
|
|
|
perf-y += builtin-list.o
|
|
|
|
perf-y += builtin-record.o
|
|
|
|
perf-y += builtin-report.o
|
|
|
|
perf-y += builtin-stat.o
|
|
|
|
perf-y += builtin-timechart.o
|
|
|
|
perf-y += builtin-top.o
|
|
|
|
perf-y += builtin-script.o
|
|
|
|
perf-y += builtin-kmem.o
|
|
|
|
perf-y += builtin-lock.o
|
|
|
|
perf-y += builtin-kvm.o
|
|
|
|
perf-y += builtin-inject.o
|
|
|
|
perf-y += builtin-mem.o
|
2015-02-20 23:16:59 +01:00
|
|
|
perf-y += builtin-data.o
|
2015-12-08 05:21:48 +01:00
|
|
|
perf-y += builtin-version.o
|
2014-12-29 15:13:44 +01:00
|
|
|
|
|
|
|
perf-$(CONFIG_AUDIT) += builtin-trace.o
|
2014-12-29 23:52:25 +01:00
|
|
|
perf-$(CONFIG_LIBELF) += builtin-probe.o
|
2014-12-29 15:13:44 +01:00
|
|
|
|
2014-12-29 13:52:36 +01:00
|
|
|
perf-y += bench/
|
2014-12-29 15:03:09 +01:00
|
|
|
perf-y += tests/
|
2014-12-29 15:13:44 +01:00
|
|
|
|
2014-12-30 17:09:15 +01:00
|
|
|
perf-y += perf.o
|
|
|
|
|
2014-12-29 15:13:44 +01:00
|
|
|
paths += -DPERF_HTML_PATH="BUILD_STR($(htmldir_SQ))"
|
|
|
|
paths += -DPERF_INFO_PATH="BUILD_STR($(infodir_SQ))"
|
|
|
|
paths += -DPERF_MAN_PATH="BUILD_STR($(mandir_SQ))"
|
|
|
|
|
|
|
|
CFLAGS_builtin-help.o += $(paths)
|
|
|
|
CFLAGS_builtin-timechart.o += $(paths)
|
2015-12-15 16:39:35 +01:00
|
|
|
CFLAGS_perf.o += -DPERF_HTML_PATH="BUILD_STR($(htmldir_SQ))" \
|
|
|
|
-DPERF_EXEC_PATH="BUILD_STR($(perfexecdir_SQ))" \
|
|
|
|
-DPREFIX="BUILD_STR($(prefix_SQ))" \
|
|
|
|
-include $(OUTPUT)PERF-VERSION-FILE
|
perf trace: Support 'strace' syscall event groups
I.e.:
$ cat ~/share/perf-core/strace/groups/file
access
chmod
creat
execve
faccessat
getcwd
lstat
mkdir
open
openat
quotactl
readlink
rename
rmdir
stat
statfs
symlink
unlink
$
Then, on a quiet desktop, try running this and then moving your mouse to
see the deluge of mouse related activity:
# perf probe 'vfs_getname=getname_flags:72 pathname=filename:string'
Added new event:
probe:vfs_getname (on getname_flags:72 with pathname=filename:string)
You can now use it in all perf tools, such as:
perf record -e probe:vfs_getname -aR sleep 1
#
# trace --ev probe:vfs_getname --filter-pids 2232 -e file
0.042 (0.042 ms): mousetweaks/2235 open(filename: 0x14e3910, mode: 438 ) ...
0.042 ( ): probe:vfs_getname:(ffffffff812230bc) pathname="/home/acme/.icons/Adwaita/cursors/xterm")
0.100 (0.100 ms): mousetweaks/2235 ... [continued]: open()) = -1 ENOENT No such file or directory
0.142 (0.018 ms): mousetweaks/2235 open(filename: 0x14c3c10, mode: 438 ) ...
0.142 ( ): probe:vfs_getname:(ffffffff812230bc) pathname="/home/acme/.icons/Adwaita/index.theme")
0.192 (0.069 ms): mousetweaks/2235 ... [continued]: open()) = -1 ENOENT No such file or directory
0.230 (0.017 ms): mousetweaks/2235 open(filename: 0x14c3c10, mode: 438 ) ...
0.230 ( ): probe:vfs_getname:(ffffffff812230bc) pathname="/usr/share/icons/Adwaita/cursors/xterm")
0.253 (0.041 ms): mousetweaks/2235 ... [continued]: open()) = 14
0.459 (0.008 ms): mousetweaks/2235 open(filename: 0x14e3910, mode: 438 ) ...
0.459 ( ): probe:vfs_getname:(ffffffff812230bc) pathname="/home/acme/.icons/Adwaita/cursors/left_side")
0.468 (0.017 ms): mousetweaks/2235 ... [continued]: open()) = -1 ENOENT No such file or directory
Need to combine that raw_syscalls:sys_enter(open) + probe:vfs_getname +
raw_syscalls:sys_exit(open) sequence...
Now, if you're bored, please write some more syscall groups, like the ones
in 'strace' and send it our way :-)
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Milian Wolff <mail@milianw.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-a42xklu59lcbxp7bbnic74a8@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2015-07-20 17:02:09 +02:00
|
|
|
CFLAGS_builtin-trace.o += -DSTRACE_GROUPS_DIR="BUILD_STR($(STRACE_GROUPS_DIR_SQ))"
|
2016-01-07 12:41:53 +01:00
|
|
|
CFLAGS_builtin-report.o += -DTIPDIR="BUILD_STR($(tipdir_SQ))"
|
2016-01-09 11:16:28 +01:00
|
|
|
CFLAGS_builtin-report.o += -DDOCDIR="BUILD_STR($(srcdir_SQ)/Documentation)"
|
2014-12-29 17:42:46 +01:00
|
|
|
|
|
|
|
libperf-y += util/
|
|
|
|
libperf-y += arch/
|
2014-12-30 00:16:01 +01:00
|
|
|
libperf-y += ui/
|
2014-12-30 13:11:32 +01:00
|
|
|
libperf-y += scripts/
|
2014-12-30 00:34:23 +01:00
|
|
|
|
|
|
|
gtk-y += ui/gtk/
|