Skip to content

Commit

Permalink
perf trace beauty fcntl: Beautify the 'arg' for DUPFD
Browse files Browse the repository at this point in the history
Before:

 77059.513 ( 0.005 ms): bash/6649 fcntl(fd: 1</dev/pts/12>, cmd: DUPFD, arg: 10) = 10</dev/pts/12>

After:

 77059.513 ( 0.005 ms): bash/6649 fcntl(fd: 1</dev/pts/12>, cmd: DUPFD, arg: 10</dev/pts/12>) = 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-0k8iszng0slcuw0rc6xq1x5l@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Arnaldo Carvalho de Melo committed Jul 19, 2017
1 parent 39cc355 commit befecc8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/perf/trace/beauty/fcntl.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ size_t syscall_arg__scnprintf_fcntl_arg(char *bf, size_t size, struct syscall_ar
{
int cmd = syscall_arg__val(arg, 1);

if (cmd == F_DUPFD)
return syscall_arg__scnprintf_fd(bf, size, arg);

if (cmd == F_SETFD)
return fcntl__scnprintf_getfd(arg->val, bf, size);

Expand Down

0 comments on commit befecc8

Please sign in to comment.