Arnaldo Carvalho de Melo
9d6dc178f0
perf trace: Allow suppressing the syscall argument names
...
To show just the values:
Default:
# trace -e open*,close,*sleep sleep 1
openat(dfd: CWD, filename: /etc/ld.so.cache, flags: CLOEXEC ) = 3
close(fd: 3 ) = 0
openat(dfd: CWD, filename: /lib64/libc.so.6, flags: CLOEXEC ) = 3
close(fd: 3 ) = 0
openat(dfd: CWD, filename: /usr/lib/locale/locale-archive, flags: CLOEXEC) = 3
close(fd: 3 ) = 0
nanosleep(rqtp: 0x7ffc0c4ea0d0, rmtp: 0 ) = 0
close(fd: 1 ) = 0
close(fd: 2 ) = 0
#
Remove it:
# perf config trace.show_arg_names=no
# trace -e open*,close,*sleep sleep 1
openat(CWD, /etc/ld.so.cache, CLOEXEC ) = 3
close(3 ) = 0
openat(CWD, /lib64/libc.so.6, CLOEXEC ) = 3
close(3 ) = 0
openat(CWD, /usr/lib/locale/locale-archive, CLOEXEC ) = 3
close(3 ) = 0
nanosleep(0x7ffced3a8c40, 0 ) = 0
close(1 ) = 0
close(2 ) = 0
#
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Luis Cláudio Gonçalves <lclaudio@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-ta9tbdwgodpw719sr2bjm8eb@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
2018-12-18 12:24:01 -03:00
..
2016-07-04 20:27:27 -03:00
2018-04-26 13:47:10 -03:00
2018-10-24 15:29:50 -03:00
2015-02-12 17:53:00 -03:00
2015-04-29 10:38:06 -03:00
2013-07-08 17:37:25 -03:00
2015-08-21 11:34:10 -03:00
2018-10-23 14:26:44 -03:00
2018-10-24 15:29:54 -03:00
2012-08-13 14:55:02 -03:00
2016-10-24 11:07:41 -03:00
2018-09-18 10:17:16 -03:00
2018-08-08 15:55:53 -03:00
2013-12-09 15:21:45 -03:00
2018-11-21 22:39:55 -03:00
2018-04-26 09:30:26 -03:00
2011-12-23 17:01:03 -02:00
2018-03-16 13:52:57 -03:00
2018-12-18 12:24:01 -03:00
2018-03-07 10:26:32 -03:00
2017-02-20 11:47:08 -03:00
2017-11-16 14:50:07 -03:00
2018-03-07 10:26:32 -03:00
2017-11-16 14:50:05 -03:00
2018-03-07 10:26:32 -03:00
2018-02-16 14:55:42 -03:00
2015-06-19 18:27:13 -03:00
2018-12-17 14:56:36 -03:00
2017-11-16 14:50:04 -03:00
2018-04-23 11:59:18 -03:00
2017-12-27 12:15:55 -03:00
2018-12-17 14:55:11 -03:00
2018-12-17 14:56:36 -03:00
2018-04-12 10:33:36 -03:00
2018-03-07 10:26:32 -03:00
2018-06-06 15:40:10 -03:00
2018-12-17 14:57:07 -03:00
2018-12-17 14:56:36 -03:00
2016-06-30 18:27:45 -03:00
2017-11-16 14:50:06 -03:00
2018-12-17 14:54:40 -03:00
2018-12-18 12:23:55 -03:00
2018-04-02 13:52:23 -03:00
2018-05-30 15:40:26 -03:00
2015-10-05 16:36:18 -03:00
2016-09-01 09:44:13 -03:00
2017-12-05 15:43:55 -03:00