Skip to content

Commit befecc8

Browse files
committed
perf trace beauty fcntl: Beautify the 'arg' for DUPFD
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 <[email protected]> Cc: David Ahern <[email protected]> Cc: Jiri Olsa <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Wang Nan <[email protected]> Link: http://lkml.kernel.org/n/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
1 parent 39cc355 commit befecc8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tools/perf/trace/beauty/fcntl.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ size_t syscall_arg__scnprintf_fcntl_arg(char *bf, size_t size, struct syscall_ar
7171
{
7272
int cmd = syscall_arg__val(arg, 1);
7373

74+
if (cmd == F_DUPFD)
75+
return syscall_arg__scnprintf_fd(bf, size, arg);
76+
7477
if (cmd == F_SETFD)
7578
return fcntl__scnprintf_getfd(arg->val, bf, size);
7679

0 commit comments

Comments
 (0)