Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1692631 > unrolled thread
| Started by | tip-bot for Arnaldo Carvalho de Melo <tipbot@zytor.com> |
|---|---|
| First post | 2017-07-20 11:00 +0200 |
| Last post | 2017-07-20 11:00 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[tip:perf/core] perf trace beauty fcntl: Do not suppress 'cmd' when zero, should be DUPFD tip-bot for Arnaldo Carvalho de Melo <tipbot@zytor.com> - 2017-07-20 11:00 +0200
| From | tip-bot for Arnaldo Carvalho de Melo <tipbot@zytor.com> |
|---|---|
| Date | 2017-07-20 11:00 +0200 |
| Subject | [tip:perf/core] perf trace beauty fcntl: Do not suppress 'cmd' when zero, should be DUPFD |
| Message-ID | <u5ftr-4U4-99@gated-at.bofh.it> |
Commit-ID: 39cc355b0486d89cef335e35edde26c14b462126
Gitweb: http://git.kernel.org/tip/39cc355b0486d89cef335e35edde26c14b462126
Author: Arnaldo Carvalho de Melo <acme@redhat.com>
AuthorDate: Mon, 17 Jul 2017 16:02:52 -0300
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue, 18 Jul 2017 23:14:25 -0300
perf trace beauty fcntl: Do not suppress 'cmd' when zero, should be DUPFD
Before:
77059.513 ( 0.005 ms): bash/6649 fcntl(fd: 1</dev/pts/12>, arg: 10) = 10</dev/pts/12>
After:
77059.513 ( 0.005 ms): bash/6649 fcntl(fd: 1</dev/pts/12>, cmd: DUPFD, arg: 10) = 10</dev/pts/12>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-woois88uwcr4xu38xx1ihiwo@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/builtin-trace.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index b842bd9..bab87f6 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -652,7 +652,8 @@ static struct syscall_fmt {
.arg = { [0] = { .scnprintf = SCA_FDAT, /* fd */ }, }, },
{ .name = "fcntl", .errmsg = true,
.arg = { [1] = { .scnprintf = SCA_FCNTL_CMD, /* cmd */
- .parm = &strarrays__fcntl_cmds_arrays, /* cmd */ },
+ .parm = &strarrays__fcntl_cmds_arrays,
+ .show_zero = true, },
[2] = { .scnprintf = SCA_FCNTL_ARG, /* arg */ }, }, },
{ .name = "fdatasync", .errmsg = true, },
{ .name = "flock", .errmsg = true,
Back to top | Article view | linux.kernel
csiph-web